38#define M_1_SQRT_2PI 0.398942280401432677939946059934
39#define M_SQRT_32 5.656854249492380195206754896838
41 const static double a[5] = { 2.2352520354606839287,
42 161.02823106855587881,
43 1067.6894854603709582,
44 18154.981253343561249,
45 0.065682337918207449113 };
46 const static double b[4] = { 47.20258190468824187,
47 976.09855173777669322,
48 10260.932208618978205,
49 45507.789335026729956 };
50 const static double c[9] = { 0.39894151208813466764, 8.8831497943883759412,
51 93.506656132177855979, 597.27027639480026226,
52 2494.5375852903726711, 6848.1904505362823326,
53 11602.651437647350124, 9842.7148383839780218,
54 1.0765576773720192317e-8 };
55 const static double d[8] = { 22.266688044328115691, 235.38790178262499861,
56 1519.377599407554805, 6485.558298266760755,
57 18615.571640885098091, 34900.952721145977266,
58 38912.003286093271411, 19685.429676859990727 };
59 const static double p[6] = {
60 0.21589853405795699, 0.1274011611602473639, 0.022235277870649807,
61 0.001421619193227893466, 2.9112874951168792e-5, 0.02307344176494017303
63 const static double q[5] = { 1.28426009614491121,
65 0.0659881378689285515,
66 0.00378239633202758244,
67 7.29751555083966205e-5 };
69 double xden, xnum, temp, del, eps, xsq, y;
72 eps = DBL_EPSILON * 0.5;
74 constexpr int lower = 1;
75 constexpr int upper = 0;
78 if (y <= 0.67448975) {
83 for (i = 0; i < 3; ++i) {
84 xnum = (xnum + a[i]) * xsq;
85 xden = (xden + b[i]) * xsq;
90 temp = x * (xnum + a[3]) / (xden + b[3]);
98 for (i = 0; i < 7; ++i) {
99 xnum = (xnum + c[i]) * y;
100 xden = (xden + d[i]) * y;
102 temp = (xnum + c[7]) / (xden + d[7]);
105 xsq = trunc(X * SIXTEN) / SIXTEN; \
106 del = (X - xsq) * (X + xsq); \
107 cum = exp(-xsq * xsq * 0.5) * exp(-del * 0.5) * temp; \
122 else if ((lower && -37.5193 < x && x < 8.2924) ||
123 (upper && -8.2924 < x && x < 37.5193)) {
128 for (i = 0; i < 4; ++i) {
129 xnum = (xnum + p[i]) * xsq;
130 xden = (xden + q[i]) * xsq;
132 temp = xsq * (xnum + p[4]) / (xden + q[4]);
157 double p = 0, cp = 0;
159 if (!std::isfinite(x) && mean == x)
164 return (x < mean) ? 0 : 1;
167 if (!std::isfinite(p))
168 return (x < mean) ? 0 : 1;
float pnormf(float x, float mean, float sd)
static void pnorm_both(double x, double &cum, double &ccum)
The actual implementation of pnormf().