Next: EXPONENT, Previous: EXIT, Up: Intrinsic Procedures
EXP — Exponential functionEXP(X) computes the base e exponential of X.
RESULT = EXP(X)
| X | The type shall be REAL(*) or
COMPLEX(*).
|
program test_exp
real :: x = 1.0
x = exp(x)
end program test_exp
| Name | Argument | Return type | Standard
|
DEXP(X) | REAL(8) X | REAL(8) | F77 and later
|
CEXP(X) | COMPLEX(4) X | COMPLEX(4) | F77 and later
|
ZEXP(X) | COMPLEX(8) X | COMPLEX(8) | GNU extension
|
CDEXP(X) | COMPLEX(8) X | COMPLEX(8) | GNU extension
|