Curve Fitting for Gen Normal Distribution (version 1 & 2)

조회 수: 1 (최근 30일)
dsmalenb
dsmalenb 2015년 9월 27일
댓글: dsmalenb 2015년 9월 29일
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!

답변 (1개)

Image Analyst
Image Analyst 2015년 9월 27일
Did you try fitdist() in the Statistics and Machine Learning Toolbox? Or simply mean() and var()?
  댓글 수: 3
Image Analyst
Image Analyst 2015년 9월 27일
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
dsmalenb 2015년 9월 29일
That is not quite what you need for the general version. See link: https://en.wikipedia.org/wiki/Generalized_normal_distribution

댓글을 달려면 로그인하십시오.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by