123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487 |
- #if defined(LIBM_SCCS) && !defined(lint)
- static char rcsid[] = "$NetBSD: e_j0.c,v 1.8 1995/05/10 20:45:23 jtc Exp $";
- #endif
- #include "math.h"
- #include "math_private.h"
- #ifdef __STDC__
- static double pzero(double), qzero(double);
- #else
- static double pzero(), qzero();
- #endif
- #ifdef __STDC__
- static const double
- #else
- static double
- #endif
- huge = 1e300,
- one = 1.0,
- invsqrtpi= 5.64189583547756279280e-01,
- tpi = 6.36619772367581382433e-01,
-
- R02 = 1.56249999999999947958e-02,
- R03 = -1.89979294238854721751e-04,
- R04 = 1.82954049532700665670e-06,
- R05 = -4.61832688532103189199e-09,
- S01 = 1.56191029464890010492e-02,
- S02 = 1.16926784663337450260e-04,
- S03 = 5.13546550207318111446e-07,
- S04 = 1.16614003333790000205e-09;
- #ifdef __STDC__
- static const double zero = 0.0;
- #else
- static double zero = 0.0;
- #endif
- #ifdef __STDC__
- double __ieee754_j0(double x)
- #else
- double __ieee754_j0(x)
- double x;
- #endif
- {
- double z, s,c,ss,cc,r,u,v;
- int32_t hx,ix;
- GET_HIGH_WORD(hx,x);
- ix = hx&0x7fffffff;
- if(ix>=0x7ff00000) return one/(x*x);
- x = fabs(x);
- if(ix >= 0x40000000) {
- s = sin(x);
- c = cos(x);
- ss = s-c;
- cc = s+c;
- if(ix<0x7fe00000) {
- z = -cos(x+x);
- if ((s*c)<zero) cc = z/ss;
- else ss = z/cc;
- }
-
- if(ix>0x48000000) z = (invsqrtpi*cc)/sqrt(x);
- else {
- u = pzero(x); v = qzero(x);
- z = invsqrtpi*(u*cc-v*ss)/sqrt(x);
- }
- return z;
- }
- if(ix<0x3f200000) {
- if(huge+x>one) {
- if(ix<0x3e400000) return one;
- else return one - 0.25*x*x;
- }
- }
- z = x*x;
- r = z*(R02+z*(R03+z*(R04+z*R05)));
- s = one+z*(S01+z*(S02+z*(S03+z*S04)));
- if(ix < 0x3FF00000) {
- return one + z*(-0.25+(r/s));
- } else {
- u = 0.5*x;
- return((one+u)*(one-u)+z*(r/s));
- }
- }
- #ifdef __STDC__
- static const double
- #else
- static double
- #endif
- u00 = -7.38042951086872317523e-02,
- u01 = 1.76666452509181115538e-01,
- u02 = -1.38185671945596898896e-02,
- u03 = 3.47453432093683650238e-04,
- u04 = -3.81407053724364161125e-06,
- u05 = 1.95590137035022920206e-08,
- u06 = -3.98205194132103398453e-11,
- v01 = 1.27304834834123699328e-02,
- v02 = 7.60068627350353253702e-05,
- v03 = 2.59150851840457805467e-07,
- v04 = 4.41110311332675467403e-10;
- #ifdef __STDC__
- double __ieee754_y0(double x)
- #else
- double __ieee754_y0(x)
- double x;
- #endif
- {
- double z, s,c,ss,cc,u,v;
- int32_t hx,ix,lx;
- EXTRACT_WORDS(hx,lx,x);
- ix = 0x7fffffff&hx;
-
- if(ix>=0x7ff00000) return one/(x+x*x);
- if((ix|lx)==0) return -one/zero;
- if(hx<0) return zero/zero;
- if(ix >= 0x40000000) {
-
- s = sin(x);
- c = cos(x);
- ss = s-c;
- cc = s+c;
-
- if(ix<0x7fe00000) {
- z = -cos(x+x);
- if ((s*c)<zero) cc = z/ss;
- else ss = z/cc;
- }
- if(ix>0x48000000) z = (invsqrtpi*ss)/sqrt(x);
- else {
- u = pzero(x); v = qzero(x);
- z = invsqrtpi*(u*ss+v*cc)/sqrt(x);
- }
- return z;
- }
- if(ix<=0x3e400000) {
- return(u00 + tpi*__ieee754_log(x));
- }
- z = x*x;
- u = u00+z*(u01+z*(u02+z*(u03+z*(u04+z*(u05+z*u06)))));
- v = one+z*(v01+z*(v02+z*(v03+z*v04)));
- return(u/v + tpi*(__ieee754_j0(x)*__ieee754_log(x)));
- }
- #ifdef __STDC__
- static const double pR8[6] = {
- #else
- static double pR8[6] = {
- #endif
- 0.00000000000000000000e+00,
- -7.03124999999900357484e-02,
- -8.08167041275349795626e+00,
- -2.57063105679704847262e+02,
- -2.48521641009428822144e+03,
- -5.25304380490729545272e+03,
- };
- #ifdef __STDC__
- static const double pS8[5] = {
- #else
- static double pS8[5] = {
- #endif
- 1.16534364619668181717e+02,
- 3.83374475364121826715e+03,
- 4.05978572648472545552e+04,
- 1.16752972564375915681e+05,
- 4.76277284146730962675e+04,
- };
- #ifdef __STDC__
- static const double pR5[6] = {
- #else
- static double pR5[6] = {
- #endif
- -1.14125464691894502584e-11,
- -7.03124940873599280078e-02,
- -4.15961064470587782438e+00,
- -6.76747652265167261021e+01,
- -3.31231299649172967747e+02,
- -3.46433388365604912451e+02,
- };
- #ifdef __STDC__
- static const double pS5[5] = {
- #else
- static double pS5[5] = {
- #endif
- 6.07539382692300335975e+01,
- 1.05125230595704579173e+03,
- 5.97897094333855784498e+03,
- 9.62544514357774460223e+03,
- 2.40605815922939109441e+03,
- };
- #ifdef __STDC__
- static const double pR3[6] = {
- #else
- static double pR3[6] = {
- #endif
- -2.54704601771951915620e-09,
- -7.03119616381481654654e-02,
- -2.40903221549529611423e+00,
- -2.19659774734883086467e+01,
- -5.80791704701737572236e+01,
- -3.14479470594888503854e+01,
- };
- #ifdef __STDC__
- static const double pS3[5] = {
- #else
- static double pS3[5] = {
- #endif
- 3.58560338055209726349e+01,
- 3.61513983050303863820e+02,
- 1.19360783792111533330e+03,
- 1.12799679856907414432e+03,
- 1.73580930813335754692e+02,
- };
- #ifdef __STDC__
- static const double pR2[6] = {
- #else
- static double pR2[6] = {
- #endif
- -8.87534333032526411254e-08,
- -7.03030995483624743247e-02,
- -1.45073846780952986357e+00,
- -7.63569613823527770791e+00,
- -1.11931668860356747786e+01,
- -3.23364579351335335033e+00,
- };
- #ifdef __STDC__
- static const double pS2[5] = {
- #else
- static double pS2[5] = {
- #endif
- 2.22202997532088808441e+01,
- 1.36206794218215208048e+02,
- 2.70470278658083486789e+02,
- 1.53875394208320329881e+02,
- 1.46576176948256193810e+01,
- };
- #ifdef __STDC__
- static double pzero(double x)
- #else
- static double pzero(x)
- double x;
- #endif
- {
- #ifdef __STDC__
- const double *p = 0,*q = 0;
- #else
- double *p,*q;
- #endif
- double z,r,s;
- int32_t ix;
- GET_HIGH_WORD(ix,x);
- ix &= 0x7fffffff;
- if(ix>=0x40200000) {p = pR8; q= pS8;}
- else if(ix>=0x40122E8B){p = pR5; q= pS5;}
- else if(ix>=0x4006DB6D){p = pR3; q= pS3;}
- else if(ix>=0x40000000){p = pR2; q= pS2;}
- z = one/(x*x);
- r = p[0]+z*(p[1]+z*(p[2]+z*(p[3]+z*(p[4]+z*p[5]))));
- s = one+z*(q[0]+z*(q[1]+z*(q[2]+z*(q[3]+z*q[4]))));
- return one+ r/s;
- }
- #ifdef __STDC__
- static const double qR8[6] = {
- #else
- static double qR8[6] = {
- #endif
- 0.00000000000000000000e+00,
- 7.32421874999935051953e-02,
- 1.17682064682252693899e+01,
- 5.57673380256401856059e+02,
- 8.85919720756468632317e+03,
- 3.70146267776887834771e+04,
- };
- #ifdef __STDC__
- static const double qS8[6] = {
- #else
- static double qS8[6] = {
- #endif
- 1.63776026895689824414e+02,
- 8.09834494656449805916e+03,
- 1.42538291419120476348e+05,
- 8.03309257119514397345e+05,
- 8.40501579819060512818e+05,
- -3.43899293537866615225e+05,
- };
- #ifdef __STDC__
- static const double qR5[6] = {
- #else
- static double qR5[6] = {
- #endif
- 1.84085963594515531381e-11,
- 7.32421766612684765896e-02,
- 5.83563508962056953777e+00,
- 1.35111577286449829671e+02,
- 1.02724376596164097464e+03,
- 1.98997785864605384631e+03,
- };
- #ifdef __STDC__
- static const double qS5[6] = {
- #else
- static double qS5[6] = {
- #endif
- 8.27766102236537761883e+01,
- 2.07781416421392987104e+03,
- 1.88472887785718085070e+04,
- 5.67511122894947329769e+04,
- 3.59767538425114471465e+04,
- -5.35434275601944773371e+03,
- };
- #ifdef __STDC__
- static const double qR3[6] = {
- #else
- static double qR3[6] = {
- #endif
- 4.37741014089738620906e-09,
- 7.32411180042911447163e-02,
- 3.34423137516170720929e+00,
- 4.26218440745412650017e+01,
- 1.70808091340565596283e+02,
- 1.66733948696651168575e+02,
- };
- #ifdef __STDC__
- static const double qS3[6] = {
- #else
- static double qS3[6] = {
- #endif
- 4.87588729724587182091e+01,
- 7.09689221056606015736e+02,
- 3.70414822620111362994e+03,
- 6.46042516752568917582e+03,
- 2.51633368920368957333e+03,
- -1.49247451836156386662e+02,
- };
- #ifdef __STDC__
- static const double qR2[6] = {
- #else
- static double qR2[6] = {
- #endif
- 1.50444444886983272379e-07,
- 7.32234265963079278272e-02,
- 1.99819174093815998816e+00,
- 1.44956029347885735348e+01,
- 3.16662317504781540833e+01,
- 1.62527075710929267416e+01,
- };
- #ifdef __STDC__
- static const double qS2[6] = {
- #else
- static double qS2[6] = {
- #endif
- 3.03655848355219184498e+01,
- 2.69348118608049844624e+02,
- 8.44783757595320139444e+02,
- 8.82935845112488550512e+02,
- 2.12666388511798828631e+02,
- -5.31095493882666946917e+00,
- };
- #ifdef __STDC__
- static double qzero(double x)
- #else
- static double qzero(x)
- double x;
- #endif
- {
- #ifdef __STDC__
- const double *p=0,*q=0;
- #else
- double *p,*q;
- #endif
- double s,r,z;
- int32_t ix;
- GET_HIGH_WORD(ix,x);
- ix &= 0x7fffffff;
- if(ix>=0x40200000) {p = qR8; q= qS8;}
- else if(ix>=0x40122E8B){p = qR5; q= qS5;}
- else if(ix>=0x4006DB6D){p = qR3; q= qS3;}
- else if(ix>=0x40000000){p = qR2; q= qS2;}
- z = one/(x*x);
- r = p[0]+z*(p[1]+z*(p[2]+z*(p[3]+z*(p[4]+z*p[5]))));
- s = one+z*(q[0]+z*(q[1]+z*(q[2]+z*(q[3]+z*(q[4]+z*q[5])))));
- return (-.125 + r/s)/x;
- }
|