Cumulative Normal distribution function P(x)
double cumul_normal( double x )
Returns the value of the cumulative Normal distribution function P(x)
EX1
void cumul_normal_ex1() { double x = 2.012, p; p = cumul_normal(x); out_double("Result:", p); // Results:0.97789 }
cumul_normal_complem
origin.h