Effacer les filtres
Effacer les filtres

Normal Distribution Probability Finder

1 vue (au cours des 30 derniers jours)
MK96
MK96 le 9 Nov 2016
Modifié(e) : dpb le 9 Nov 2016
Trying to use normal distribution with mean = 0 and variance = 1 to find the prob(X>-2.125)
How would I go about doing this?

Réponse acceptée

Massimo Zanetti
Massimo Zanetti le 9 Nov 2016
pp = makedist('Normal','mu',0,'sigma',1);
yourP = 1-cdf(pp,-2.125)

Plus de réponses (1)

dpb
dpb le 9 Nov 2016
Modifié(e) : dpb le 9 Nov 2016
>> norminv(0.1,-2.125)
ans =
-3.4066
>>
if have Stat Toolbox.
Right answer, wrong question (and a typo, to boot)... :(
>> 1-normcdf(-2.125)
ans =
0.9832
>>
  2 commentaires
Massimo Zanetti
Massimo Zanetti le 9 Nov 2016
Negative probability seems quite wrong.....
dpb
dpb le 9 Nov 2016
Think? :) Misread query, sorry...

Connectez-vous pour commenter.

Catégories

En savoir plus sur Introduction to Installation and Licensing dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by