Icon Sqrt

Unit: Internal

Available In: Client and Server Applications

function Sqrt(Value: Double): Double

function Sqrt(Value: Integer): Double

The Sqrt function returns the square root of the input parameter. The return value is a Double value.

Examples

X := Sqrt(154);  // X is 12.409673645990857
Image