1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
|
/*
* Cephes Math Library Release 2.8: June, 2000
* Copyright 1984, 1987, 2000 by Stephen L. Moshier
*/
#include "mconf.h"
#define DEBUG 0
static double stop = 1.37e-17;
extern double MACHEP;
double onef2(double a, double b, double c, double x, double *err)
{
double n, a0, sum, t;
double an, bn, cn, max, z;
an = a;
bn = b;
cn = c;
a0 = 1.0;
sum = 1.0;
n = 1.0;
t = 1.0;
max = 0.0;
do {
if (an == 0)
goto done;
if (bn == 0)
goto error;
if (cn == 0)
goto error;
if ((a0 > 1.0e34) || (n > 200))
goto error;
a0 *= (an * x) / (bn * cn * n);
sum += a0;
an += 1.0;
bn += 1.0;
cn += 1.0;
n += 1.0;
z = fabs(a0);
if (z > max)
max = z;
if (sum != 0)
t = fabs(a0 / sum);
else
t = z;
}
while (t > stop);
done:
*err = fabs(MACHEP * max / sum);
#if DEBUG
printf(" onef2 cancellation error %.5E\n", *err);
#endif
goto xit;
error:
#if DEBUG
printf("onef2 does not converge\n");
#endif
*err = 1.0e38;
xit:
#if DEBUG
printf("onef2( %.2E %.2E %.2E %.5E ) = %.3E %.6E\n", a, b, c, x, n,
sum);
#endif
return (sum);
}
double threef0(double a, double b, double c, double x, double *err)
{
double n, a0, sum, t, conv, conv1;
double an, bn, cn, max, z;
an = a;
bn = b;
cn = c;
a0 = 1.0;
sum = 1.0;
n = 1.0;
t = 1.0;
max = 0.0;
conv = 1.0e38;
conv1 = conv;
do {
if (an == 0.0)
goto done;
if (bn == 0.0)
goto done;
if (cn == 0.0)
goto done;
if ((a0 > 1.0e34) || (n > 200))
goto error;
a0 *= (an * bn * cn * x) / n;
an += 1.0;
bn += 1.0;
cn += 1.0;
n += 1.0;
z = fabs(a0);
if (z > max)
max = z;
if (z >= conv) {
if ((z < max) && (z > conv1))
goto done;
}
conv1 = conv;
conv = z;
sum += a0;
if (sum != 0)
t = fabs(a0 / sum);
else
t = z;
}
while (t > stop);
done:
t = fabs(MACHEP * max / sum);
#if DEBUG
printf(" threef0 cancellation error %.5E\n", t);
#endif
max = fabs(conv / sum);
if (max > t)
t = max;
#if DEBUG
printf(" threef0 convergence %.5E\n", max);
#endif
goto xit;
error:
#if DEBUG
printf("threef0 does not converge\n");
#endif
t = 1.0e38;
xit:
#if DEBUG
printf("threef0( %.2E %.2E %.2E %.5E ) = %.3E %.6E\n", a, b, c, x, n,
sum);
#endif
*err = t;
return (sum);
}
/*
* Bessel function of noninteger order
*/
double yv(double v, double x)
{
double y, t;
int n;
n = v;
if (n == v) {
y = yn(n, x);
return (y);
}
else if (v == floor(v)) {
/* Zero in denominator. */
mtherr("yv", DOMAIN);
return NPY_NAN;
}
t = NPY_PI * v;
y = (cos(t) * jv(v, x) - jv(-v, x)) / sin(t);
if (cephes_isinf(y)) {
if (v > 0) {
mtherr("yv", OVERFLOW);
return -NPY_INFINITY;
}
else if (v < -1e10) {
/* Whether it's +inf or -inf is numerically ill-defined. */
mtherr("yv", DOMAIN);
return NPY_NAN;
}
}
return (y);
}
|