MATLAB: Normal Distribution Probability Finder

normal distributionprobabilityStatistics and Machine Learning Toolbox

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?

Best Answer

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