What function in MATLAB for calculating the value of inverse standard normal distribution function?
21 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Khanh Dang
am 24 Mär. 2022
Kommentiert: Khanh Dang
am 24 Mär. 2022
Dear all,
As you known, the probability of failure is expressed by Pf = 1 - F(beta), in which F is inverse cumulative probability distribution function of standard normal distribution. I have known the reliability index Beta = 1.81, but I can not find the function of F in MATLAB (I only found function of norminv() or erfcinv() but these functions is incrrect in this case.
Please help me to find out the appropriate function in MATLAB,
Thank you so much for your help.
Khanh
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (1)
Bruno Luong
am 24 Mär. 2022
Bearbeitet: Bruno Luong
am 24 Mär. 2022
There is no sense to substract 1 to *inverse* CPF, which take argument value in (0,1) and maps to (-Inf,Inf). It only makes sense of F is direct CDF, which take input value in (-Inf,Inf) and map it to (0,1).
So your question/equation is wrong to start with.
F=@(x) (erf(x)+1)/2;
ezplot(F)
1-F(1.81)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!