sqrt
Syntax:
Value
Integer
sqrt
(
Number
num)
Description:
Computes the square root of
num
.
Examples:
($b1:$b5) = sqrt($a)
Before:
A
B
C
1
0.34
2
1.99
3
3.7
4
4
5
0
6
After:
A
B
C
1
0.34
0.58309518948453
2
1.99
1.41067359796659
3
3.7
1.92353840616713
4
4
2
5
0
0
6
($a1) = sqrt($f3)