Pregunta

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?

¿Fue útil?

Solución

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

meanVector=obj.mu;
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top