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
: Anumber
for which the exponential function is to be calculated. Ifnumber
is null,Number.Exp
returns null.
Examples
Example #1
Raise e to the power of 3.
Number.Exp(3)
Result:
20.085536923187668
Category
Number.Operations