Hi cyclist,
the default starting values are selected from the data at random, and you have discovered that this sometimes does not work well. There's an argument 'replicates' that you can use to have it try this multiple times and deliver the bone fit. However, in more recent releases including R2014b there is a new argument 'Start','plus' that uses a better starting method, one based on the kmeans++ algorithm for clustering. Here's a variant of your function that shows the relative performance of the default random start and the 'plus' start:
N = 100000;
EFFECT_SIZE = 5;
seedList = 1:20;
means1 = zeros(length(seedList),2);
means2 = zeros(length(seedList),2);
for s = seedList
s
rng(s)
X = [randn(N,1); randn(N,1)+EFFECT_SIZE];
rng(s) % randomness is used in the fit also
GMModel = fitgmdist(X,2);
means1(s,:) = GMModel.mu';
rng(s)
GMModel = fitgmdist(X,2,'start','plus');
means2(s,:) = GMModel.mu';
end
plot(means1(:,1),means1(:,2),'bx',means2(:,1),means2(:,2),'ro')
Need a Custom Version or Complete Simulation for This Problem?
Our 500+ PhD engineers build, debug, and optimize working MATLAB scripts and Simulink (.slx) models tailored to your exact assignment rubrics with zero plagiarism.
Explore similar technical troubleshooting questions and verified MATLAB solutions: