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!