chi2gof function does not work with Gaussian mixture model
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
When I try to test the null hypothesis that the data in the vector x are obtained from the Gaussian mixture model using the chi-square matching criterion, I get an error.
x = [trnd(20,1,50) trnd(4,1,100)+3];
GMModel = fitgmdist(x',2);
h = chi2gof(x, 'CDF', GMModel)
Error using chi2gof (line 216)
The 'cdf' value must be a ProbDist object, a function handle, or a cell array containing a function handle.
0 commentaires
Réponses (1)
Aditya Patil
le 19 Fév 2021
Modifié(e) : Aditya Patil
le 19 Fév 2021
You need to pass a function handle of the cdf function, for example,
h = chi2gof(x,'cdf',{@normcdf,mean(x),std(x)})
For your example, it would be
x = [trnd(20,1,50) trnd(4,1,100)+3]';
GMModel = fitgmdist(x,2);
h = chi2gof(x, 'CDF', @(y)(GMModel.cdf(y')))
0 commentaires
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!