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