Code covered by the BSD License  

Highlights from
Discriminant Analysis Programme

image thumbnail
from Discriminant Analysis Programme by Bartolomeu Rabacal
Discrimination and Classification of data to and from groups with classical/robust estimation

computeInvCovList(covList, numGrp)
function invCovList = computeInvCovList(covList, numGrp)

if isempty(covList)
   invCovList = {}; 
   return 
end

for i = 1:numGrp
    invCovList{i} = inv(covList{i});
end

Contact us at files@mathworks.com