source: issm/trunk/src/m/miscellaneous/normcdf_issm.m@ 15396

Last change on this file since 15396 was 15396, checked in by Mathieu Morlighem, 12 years ago

merged trunk-jpl and trunk for revision 15394

File size: 158 bytes
Line 
1%
2% wrapper for normcdf to avoid using the matlab statistics toolbox.
3%
4function [p]=normcdf_issm(x,mu,sigma)
5
6 p=(1.+erf((x-mu)/(sigma*sqrt(2.))))/2.;
7
8end
Note: See TracBrowser for help on using the repository browser.