SpectraRust/tlusty/extracted/expo.f
2026-03-19 14:05:33 +08:00

11 lines
198 B
Fortran

function expo(x)
c ================
c
INCLUDE 'IMPLIC.FOR'
crit=80.
if(x.lt.-crit) x=-crit
if(x.gt.crit) x=crit
expo=exp(x)
return
end