Eine aufbereitete Darstellung der Quelle

 
     
 
 
Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 

Benutzer

Quelle  qjyqn.c

  Sprache: C
 

/* qjyqn.c */
/* Auxiliary function for Hankel's asymptotic expansion */

/* Jn(x) = sqrt(2/(pi x)) [ P(n,x) cos X  -  Q(n,x) sin X ]
 * Yn(x) = sqrt(2/(pi x)) [ P(n,x) sin X  +  Q(n,x) cos X ]
 *
 * where arg of sine and cosine = X = x - (0.5n + 0.25)*PI.
 * We solve this for Pn(x):
 * Jn(x) cos X  +  Yn(x) sin X  =  sqrt( 8/(pi x)) Pn(x)
 *
 * Series expansions are set to terminate at less than full
 * working precision.
 *
 */


#include "qhead.h"

/*extern double MAXNUM, PI;*/
/*#define EUL 0.57721566490153286060*/
extern QELT qeul[];
extern QELT qone[], qtwo[];
extern QELT qpi[];
extern QELT oneopi[];

int qlog(), qjn();


int qjyqn( qnn, x, y )
QELT qnn[], x[], y[];
{
static QELT nfac[NQ], nm1fac[NQ], f[NQ], a[NQ], psi1[NQ];
static QELT g[NQ], h[NQ], jn[NQ], yn[NQ], psin[NQ], z[NQ], s[NQ];
static QELT qn[NQ], p[NQ], q[NQ], t[NQ];
static QELT tt[NQ], u[NQ], odd[NQ], tlast[NQ];
/*
static QELT bt[NQ];
char asy[20];
*/

int temp;
long i, k, n, sign, kpn;
union
  {
    unsigned short s[4];
    double d;
  } dn;

qtoe( qnn, dn.s );
n = dn.d;

qtoe( x, dn.s );
if( dn.d > 64.0 )  /* use asymptotic expansion if x > 32.5 */
 goto hank;

if( n < 0 )
 {
 n = -n;
 if( (n & 1) == 0 ) /* -1**n */
  sign = 1;
 else
  sign = -1;
 }
else
 sign = 1;


if( x[1] == 0 )
 {
 mtherr("qpn", OVERFLOW );
 qinfin(yn);
 return0 );
 }

/* qpn.c 2 */


/* factorial of n */
qmov( qone, nfac); /*nfac = 1.0;*/
qclear( f );  /*f = 0;*/
for( i=0; i<n-1; i++ )
 {
 qadd( qone, f, f ); /*f += 1.0;*/
 qmul( f, nfac, nfac ); /*nfac *= f;*/
 }
qmov( nfac, nm1fac );  /*nm1fac = nfac;*/
qadd( qone, f, f );  /*f += 1.0;*/
qmul( nfac, f, nfac );  /*nfac *= f;*/
/*printf("nfac %.4E\n", nfac );*/
qdiv( nfac, qone, a );  /*a = 1.0/nfac;*/

/* psi function */
qclear( psi1 );   /*psi1 = 0;*/
qclear( psin );   /*psin = 0;*/
for( i=1; i<=n; i++ )
 {
 ltoq( &i, z );
 qdiv( z, qone, z );
 qadd( psin, z, psin ); /*psin += 1.0/i;*/
 }
/*printf("psin %.4E\n", psin );*/
qmul( x, x, z );
z[1] -= 2;
z[0] = -1;   /*z = -x*x/4.0;*/
qdiv( nfac, psin, s );  /*s = psin/nfac;*/
kpn = n+1;
qmov( qone, f );  /* k = 1 */
ltoq( &kpn, g );
do
 {
 qdiv( f, qone, h );
 qadd( psi1, h, psi1 ); /*psi1 += 1.0/k;*/
 qdiv( g, qone, h );
 qadd( psin, h, psin ); /*psin += 1.0/kpn;*/
 qmul( f, g, h );
 qdiv( h, z, h );
 qmul( h, a, a ); /*a *= z/(k*kpn);*/
 qadd( psi1, psin, h );
 qmul( h, a, h );
/*
 if( s[0] != h[0] )
  {
  if( s[1] > bt[1] )
   qmov( s, bt );
  if( h[1] > bt[1] )
   qmov( h, bt );
  }
*/

 qadd( s, h, s ); /*s += a*(psi1+psin);*/
 qadd( qone, f, f ); /*k += 1;*/
 qadd( qone, g, g ); /*kpn += 1;*/
 }
while( ((int) s[1] - (int) a[1]) < NBITS/2 );
/* estimate of cancellation error */
/*
qdiv( s, bt, bt );
bt[1] -= 144;
qtoasc( bt, asy, 4 );
printf( "yn est error %s\n", asy );
*/

/*printf("infinite %.4E\n", s);*/

/* qpn.c 3 */
/* finite sum */

qclear( f );   /*f = 0;*/
if( n > 0 )
{
z[0] = 0;   /*z = -z;*/
qmov( nm1fac, a );  /*a = nm1fac;*/
kpn = n - 1;
qmov( a, f );   /*f = a;*/
ltoq( &kpn, g );
qmov( qone, h );  /* k = 1 */
for( k=1; k<n; k++ )
 {
 qmul( g, h, nm1fac );
 qdiv( nm1fac, z, nm1fac );
 qmul( a, nm1fac, a ); /*a *= z/(k*kpn);*/
 qadd( f, a, f ); /*f += a;*/
 qsub( qone, g, g ); /*kpn -= 1;*/
 qadd( qone, h, h );
 }
}
/*printf("finite %.4E\n", f);*/
/* x/2**n */
qmov( x, a );
a[1] -= 1;   /*a = x/2;*/
qmov( qone, z );  /*z = 1.0;*/
for( i=1; i<=n; i++ )
 qmul( z, a, z ); /*z *= a;*/
/*printf("x/2**n %.4E\n", z );*/
/* combine the terms */
/*s = 2.0*(log(a)+EUL)*jn(n,x) - z*s - f/z;*/
qlog( a, g );
qadd( g, qeul, g );
i = n;
ltoq( &i, h );
qjn( h, x, jn );
qmul( jn, g, g );
g[1] += 1;

qdiv( z, f, f );
qsub( f, g, g );

qmul( z, s, f );
qsub( f, g, g );

qdiv( qpi, g, yn );  /*s /= PI;*/
if( sign < 0 )
 yn[0] = ~yn[0];  /*return(s*sign);*/
goto findp;

/* jvpq.c
 * Hankel's asymptotic expansion for Bessel functions Jv(x)
 * Note: does not converge to 144 bit accuracy
 * for x less than about 51.5.
 */



hank:

if( n != 0 )
 {
 i = n;
 ltoq( &i, u );
 qmul( u, u, u ); /* u = 4.0 * n * n */
 u[1] += 2;
 }
else
 qclear(u);

qmov( x, z );
z[1] += 3;  /* z = 8.0 * x */
qclear(qn);  /* n = 0.0     */
qmov( qone, t ); /* t = 1.0 */
qclear(p);  /* p = 0.0 */
qclear(q);  /* q = 0.0 */
qmov( qone, odd ); /* odd = -1.0 */
odd[0] = -1;
sign = 1;
qmov( qone, tlast );

do
 {
 if( sign > 0 )
  qadd( t, p, p ); /* p += t */
 else
  qsub( t, p, p ); /* p -= t */

 qadd( qone, qn, qn );  /* n += 1.0 */
 qadd( qtwo, odd, odd );  /* odd += 2.0 */
 /* t *= (u - odd*odd)/(n * z) */
 qmul( odd, odd, tt );
 qsub( tt, u, tt );
 qmul( t, tt, t );
 qmul( qn, z, tt );
 qdiv( tt, t, t );


 if( sign > 0 )
  qadd( t, q, q ); /* q += t */
 else
  qsub( t, q, q ); /* q -= t */
 qadd( qone, qn, qn );  /* n += 1.0 */
 qadd( qtwo, odd, odd );  /* odd += 2.0 */
 /* t *= (u - odd*odd)/(n * z) */
 qmul( odd, odd, tt );
 qsub( tt, u, tt );
 qmul( tt, t, t );
 qmul( qn, z, tt ); /* /(n*z) */
 qdiv( tt, t, t );
 temp = t[0];
 t[0] = 0;
 if( qcmp(t, tlast) > 0 ) /* stop if terms get bigger */
  goto done;
 qmov( t, tlast );
 t[0] = temp;
 if( qn[1] > (QELT) (EXPONE + 6) )
  goto done;
 sign = -sign;
 }
while( ((int) q[1] - (int) t[1]) < NBITS/2 );

done:

/*qmov( p, y );*/
qmov( q, y );
/*
qtoasc( tlast, asy, 4 );
printf( "qjypq tlast %s\n", asy );
*/

return(0);
findp:

/* Jn(x) = sqrt(2/(pi x)) [ P(n,x) cos X  -  Q(n,x) sin X ]
 * Yn(x) = sqrt(2/(pi x)) [ P(n,x) sin X  +  Q(n,x) cos X ]
 *
 * where arg of sine and cosine = X = x - (0.5n + 0.25)*PI.
 * We solve this for Pn(x):
 * Jn(x) cos X  +  Yn(x) sin X  =  sqrt( 8/(pi x)) Pn(x)
 */


qmov( qone, tt );
tt[1] -= 2;  /* 0.25 */
if( n != 0 )
 {
 i = n;
 ltoq( &i, u );
 u[1] -= 1;  /* 0.5n  */
 qadd( u, tt, tt );
 }
else
 qclear(u);

qmul( qpi, tt, tt ); /* times pi */
qsub( tt, x, tt ); /* subtracted from x */

/* P(x) = Jn cosX + Yn sinX */
/*
qcos( tt, f );
qmul( jn, f, f );
qsin( tt, g );
qmul( yn, g, g );
qadd( f, g, f );
*/


/* Q(x) = Yn cosX - Jn sinX */
qcos( tt, f );
qmul( yn, f, f );
qsin( tt, g );
qmul( jn, g, g );
qsub( g, f, f );

/* constant factor = sqrt( pi x/2 ) */
qmul( x, qpi, tt );
tt[1] -= 1;
qsqrt( tt, odd );
qmul( odd, f, y );
return0 );
}

Messung V0.5 in Prozent
C=76 H=89 G=82

¤ Dauer der Verarbeitung: 0.11 Sekunden  (vorverarbeitet am  2026-06-23) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Software

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Aktivitäten

     Artikel über Sicherheit
     Anleitung zur Aktivierung von SSL

Muße

     Gedichte
     Musik
     Bilder

Jenseits des Üblichen ....
    

Besucherstatistik

Besucherstatistik