Files
piscal/dataassim/math/numrec/f77_sources/ellf.for
T
2016-02-03 18:52:05 +00:00

9 lines
181 B
Fortran

FUNCTION ellf(phi,ak)
REAL ellf,ak,phi
CU USES rf
REAL s,rf
s=sin(phi)
ellf=s*rf(cos(phi)**2,(1.-s*ak)*(1.+s*ak),1.)
return
END