SQRT
edit
Returns the square root of a number. The input can be any numeric value, the return value is always a double.
Square roots of negative numbers are NaN. Square roots of infinites are infinite.
ROW d = 100.0 | EVAL s = SQRT(d)
d: double | s:double |
---|---|
100.0 |
10.0 |
Supported types:
n | result |
---|---|
double |
double |
integer |
double |
long |
double |
unsigned_long |
double |