Normal Distribution Probability Finder

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?

 採用された回答

Massimo Zanetti
Massimo Zanetti 2016 年 11 月 9 日

4 投票

pp = makedist('Normal','mu',0,'sigma',1);
yourP = 1-cdf(pp,-2.125)

その他の回答 (1 件)

dpb
dpb 2016 年 11 月 9 日
編集済み: dpb 2016 年 11 月 9 日

3 投票

>> 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 件のコメント

Massimo Zanetti
Massimo Zanetti 2016 年 11 月 9 日
Negative probability seems quite wrong.....
dpb
dpb 2016 年 11 月 9 日
Think? :) Misread query, sorry...

サインインしてコメントする。

質問済み:

2016 年 11 月 9 日

編集済み:

dpb
2016 年 11 月 9 日

Community Treasure Hunt

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

Start Hunting!

Translated by