Number.Exp
Raises e to the given power.
Syntax
Number.Exp(
number as number
) as number
Remarks
Returns the result of raising e to the power of number (exponential function).
number: Anumberfor which the exponential function is to be calculated. Ifnumberis null,Number.Expreturns null.
Examples
Example #1
Raise e to the power of 3.
Number.Exp(3)
Result:
20.085536923187668
Category
Number.Operations