Probability in a specific range (-z,z) for normal distribution.
double prob( double dz )
Area(Probability) under the normal curve between -z and +z.
EX1
void prob_ex1() { double dA,dz=1; dA=prob(dz); // results in dA==0.6826895 }
This is not a real CDF, However, it can calculate probability under a specific range
normcdf, invprob
origin.h