Description
The Exp() function returns e raised to a power.
Note: The value of number cannot exceed 709.782712893.
Tip: Also look at the Log function.
This function has the form:
Exp(number)
Parameter | Description |
---|---|
number | (required) A valid numeric expression |
Examples
The following example shows the basic use of this function:
Msgbox(Exp(6.7))
Msgbox(Exp(-6.7))
This produces the following result (each line in a separate pop-up message box):
812.405825167543
1.23091190267348E-03
Miscellaneous Information
Supported in Version: | 1.0 |
---|