Exp
(Engine-Level Function)
| 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.
