Pergunta

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?

Foi útil?

Solução

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

meanVector=obj.mu;
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top