Note: This is a work in progress and will be formatting errors. Read more about the project on the home page.
the sqrt of number
Value returned: a number equal to the square root of number
. If number
is negative, sqrt
returns NAN(001),
which means “not a number.” the sqrt of 2
sqrt(2)
the sqrt of 9 + 16 -- returns 19
the sqrt of (9 + 16) -- returns 5
169 / 19
pi
(60.625 * 500)
average(1,4,5,10)
i+1 -- (where i is a number)
line 1 of fld "Debits"
abs of -10 + 2
returns 12
and abs of (-10 + 2)
returns 8
. In short, always use parentheses to group things the way you want them to evaluate, and you won’t have to worry about the difference between factors and expressions.
Functions