Icon Power

Unit: Internal

Available In: Client and Server Applications

function Power(X, Y: Double): Double

function Power(X, Y: Integer): Double

The Power function returns the X input parameter raised to the power specified by the Y input parameter. The return value is a Double value.

Examples

X := Power(0.523, 4);  // X is 0.07481811384100001
Image