source:
issm/trunk/src/m/miscellaneous/norminv_issm.m@
15396
Last change on this file since 15396 was 15396, checked in by , 12 years ago | |
---|---|
File size: 155 bytes |
Line | |
---|---|
1 | % |
2 | % wrapper for norminv to avoid using the matlab statistics toolbox. |
3 | % |
4 | function [x]=norminv_issm(p,mu,sigma) |
5 | |
6 | x=mu+sigma*sqrt(2.)*erfinv(2.*p-1.); |
7 | |
8 | end |
Note:
See TracBrowser
for help on using the repository browser.