Domanda

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?

È stato utile?

Soluzione

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

meanVector=obj.mu;
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top