Exp

Description:              This function returns the natural antilogarithm of a numeric expression.

Returns:                    Numeric

Usage:                       Script or Steady State

Format:                      Exp(X)

Parameters:             X     { numeric }  { required }  { no default: }

                                              Any numeric expression. The value must not be negative or the result will be invalid.

Comments:               The function raises the constant e to the power of the parameter X. It is the complement of the Ln function.

Example:

a = Ln(78);

b = Exp(a);

In this example, b will be equal to 78.

See Also:

Ln | Log | Pow | Math Functions