Exp

From Xojo Documentation

Method

Exp(value as Double) As Double

Supported for all project types and targets.

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

Syntax

result=Exp (value)

Part Type Description
result Double The exponential of value.
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.

Var d As Double
d = Exp(10) // returns 22026.4657948

See Also

^, * operators; Xojo.Math.Exp function