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 中查找有关 Descriptive Statistics 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!