Icon Exp

Unit: Internal

Available In: Client and Server Applications

function Exp(Value: Double): Double

function Exp(Value: Integer): Double

The Exp function returns e raised to the power specified by the input parameter, where e is the base of the natural logarithm. The return value is a Double value.

Examples

X := Exp(0.523);  // X is 1.6870813093472114
Image