Normal (Gaussian) cdf
double normcdf( const double dX, int iTail = TAILED_TEST_LOWER, int * nFail = NULL )
Returns standardized normal cumulative distribution function
EX1
void normcdf_ex1() { double dX[]= {0.25, 0.5, 0.75}; for(int ii = 0; ii<3; ii++) printf("%f: %f\n", dX[ii], normcdf(dX[ii])); }
origin.h