how can i get an inverse normal distribution probability function value?
Mostrar comentarios más antiguos
what is its code in MATLAB?
Respuestas (2)
the cyclist
el 8 de Dic. de 2016
Editada: the cyclist
el 8 de Dic. de 2016
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
el 9 de Dic. de 2016
0 votos
https://de.mathworks.com/help/stats/norminv.html
Best wishes
Torsten.
2 comentarios
the cyclist
el 9 de Dic. de 2016
Editada: the cyclist
el 9 de Dic. de 2016
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
el 9 de Dic. de 2016
The question is ambiguous. It might be about either.
Categorías
Más información sobre Inverse Gaussian Distribution en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!