Exp
| Description: | Returns the natural antilogarithm of a numeric expression. |
| Returns: | Numeric |
Usage: ![]() |
Script or steady state. |
| Function Groups: | Generic Math |
| Related to: | Ln | Log | Pow |
Format: ![]() |
Exp(X) |
| Parameters: |
| X |
| Required. 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.
