Normal Distribution Probability Finder
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Akzeptierte Antwort
Massimo Zanetti
am 9 Nov. 2016
pp = makedist('Normal','mu',0,'sigma',1);
yourP = 1-cdf(pp,-2.125)
0 Kommentare
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!