exp(x) computes the base ee exponential of x.
exp(x)
x
FORTRAN 77 and later
Elemental function
result = exp(x)
real
complex
The return value has same type and kind as x.
program test_exp real :: x = 1.0 x = exp(x) end program test_exp