Exp Function

Returns "e" to the power of the value specified.

Syntax

result = Exp( value )


Parameters

value

Double

The value you want the exponential of.



Notes

The Exp function returns "e" to the power of the value passed to it.


Examples

This example uses the Exp function to return the exponential of a number.

Dim d as Double
d=Exp(10) //returns 22026.4657948

See Also

^, * operators.