Question

Running the function:

obj = gmdistribution.fit(X,n)

outputs an obj of class gmdistribution. However, I would like to output an n x 1 matrix of means, what commands should I use?

Was it helpful?

Solution

From the gmdistribution object - obj, you can get the nx1 mean vector by simply referencing that field as follows:

meanVector=obj.mu;
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top