Curve Fitting for Gen Normal Distribution (version 1 & 2)
Afficher commentaires plus anciens
Hello!
I have been on the search for MATLAB code which estimates the parameters for the General Normal Distribution (version 1 & 2) with confidence intervals for each of the parameters.
I have searched for a viable solution for some time but have not found any.
Any help would be greatly appreciated!
Thank you!
Réponses (1)
Image Analyst
le 27 Sep 2015
0 votes
Did you try fitdist() in the Statistics and Machine Learning Toolbox? Or simply mean() and var()?
3 commentaires
dsmalenb
le 27 Sep 2015
Image Analyst
le 27 Sep 2015
Why not? What went wrong? It's pretty simple. How about just doing
theMean = mean(yourData(:));
theVar = var(yourData(:));
That defines the Gaussian parameters. What more do you need?
dsmalenb
le 29 Sep 2015
Catégories
En savoir plus sur Half-Normal Distribution dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!