Exp

exp returns the exponential function of its argument.

Syntax

 exp(NUMERIC_EXPR)

Examples

 Y = exp(0) : # Returns 1Y = exp(pi): # Returns 23.06926...

Description

This function returns the exponential (power of e) of its argument.

ln is the reverse function of exp.
The type of result is Double.

Associated errors

Error codeDescription
10the argument is not numeric.
13Calculation overflow (x is too big - over 184,89995462).

See also

ln, log.