MATLAB: How to calculate the probabilistic constraints in Matlab

normal distributionrandom variable

I have random variables x which follow Normal Distribution with mean and variance and I want to calculate the probablitiy of P(x<= a1+a2+a3)=0.9 where a1, a2, a3 are unknown variables. How do I calculate using Matlab?

Best Answer

a1+a2+a3 = norminv(0.9,mu,sigma)
https://de.mathworks.com/help/stats/norminv.html
Related Question