how can i get an inverse normal distribution probability function value?
이전 댓글 표시
답변 (2개)
the cyclist
2016년 12월 8일
편집: the cyclist
2016년 12월 8일
If you have the Statistics and Machine Learning Toolbox -- Inverse Gaussian Distribution.
For example,
pd = makedist('InverseGaussian');
x = 0:0.1:5; y = pd.pdf(x) figure; plot(x,y,'.')

Torsten
2016년 12월 9일
0 개 추천
https://de.mathworks.com/help/stats/norminv.html
Best wishes
Torsten.
댓글 수: 2
the cyclist
2016년 12월 9일
편집: the cyclist
2016년 12월 9일
I don't think this is correct.
norminv computes the inverse of the cdf of the normal distribution. I believe that the question is about the inverse normal (or inverse Gaussian) distribution, which -- despite the confusingly similar names -- is a different thing.
John D'Errico
2016년 12월 9일
The question is ambiguous. It might be about either.
카테고리
도움말 센터 및 File Exchange에서 Inverse Gaussian Distribution에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!