up previous next
Returns the square root of a given value.
This function returns the square root of
X rounded to the
current global accuracy.
- @param X The value of which to take the square root.
- @return Returns the square root of X rounded to the current global accuracy.
Fn.SetAccuracy(20);
R := Fn.Sqrt(2);
Dec(R, 30);
1.4142135623730950488
-------------------------------
|