Exp function
Syntax
Exp(n)
Description
Exp returns the constant e raised to the power of n where n is a number. The constant e equals 2.71828182845904, the base of natural logarithms. The number n is the exponent applied to the base e.
Exp is the inverse of the Ln function, which is the natural logarithm of x.
Returns
Returns a Number value equal to the constant e raised to the power of n.
Example
The examples set &NUM to 2.71828182845904, then 7.389056099(e2):
&NUM = Exp(1);
&NUM = Exp(2);
Related Topics