Calculates the square root of a number.
Function
result = sqrt(input)
Arguments
Argument | Data Type |
input | numeric |
---|---|
result | decimal |
Comments
If the input number is negative then the result will be null.
Examples
result = sqrt(64)
/* result = 8 */
Calculates the square root of a number.
result = sqrt(input)
Argument | Data Type |
input | numeric |
---|---|
result | decimal |
If the input number is negative then the result will be null.
result = sqrt(64)
/* result = 8 */