Normal Distribution Probability Finder
1 回表示 (過去 30 日間)
古いコメントを表示
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?
0 件のコメント
採用された回答
Massimo Zanetti
2016 年 11 月 9 日
pp = makedist('Normal','mu',0,'sigma',1);
yourP = 1-cdf(pp,-2.125)
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!