No BSD License  

Highlights from
Gaussian Mixture Model

from Gaussian Mixture Model by Vikram T N
This simulates the Gaussian Mixture Model

Mixing_Coefficient(X,MU,SIGMA)
function MC = Mixing_Coefficient(X,MU,SIGMA)
M = normpdf(X,MU,SIGMA);
[r,c] = size(M);
MC = 0.0;
for i=1:c
    MC = MC + M(i);
end
MC = MC/c;

Contact us at files@mathworks.com