Files
2025-02-Numerical/lib/nr/k_and_r/recipes/elle.c
2025-09-12 18:55:25 +09:00

16 lines
224 B
C

#include <math.h>
#include "nrutil.h"
float elle(phi,ak)
float ak,phi;
{
float rd(),rf();
float cc,q,s;
s=sin(phi);
cc=SQR(cos(phi));
q=(1.0-s*ak)*(1.0+s*ak);
return s*(rf(cc,q,1.0)-(SQR(s*ak))*rd(cc,q,1.0)/3.0);
}