POWER (x, y) | | exponentiation -- raises x to the
power of y. This is the same as x ^ y. POWER( 3, 2 ) will return 9. |
SQR(x) or SQRT(x) | | returns the square root of x. SQRT( 16 ) will return 4. |
ABS(x) or ABSVAL(x) | | returns the absolute value of x. ABS( -2 ) will return 2. |
SIN(x) or SINE(x) | | returns the sine of x where x is in
radians. |
COS(x) or COSINE(x) | | returns the cosine of x where x is
in radians. |
TAN(x) or TANGENT(x) | | returns the tangent of x where x is
in radians. |
ARCSINE(x) or ASIN(x) | | returns in radians the arcsine of x. |
ARCCOSINE(x) or ACOS(x) | | returns in radians the arccosine of x. |
ARCTANGENT(x) or ATAN(x) | | returns in radians the arctangent
of x. |
SECANT(x) | | returns the secant of x where x is
in radians. |
COSECANT(x) | | returns the cosecant of x where x
is in radians. |
COTANGENT(x) | | returns the cotangent of x where x
is in radians. |
ARCSEC(x) | | returns the inverse secant of x. |
ARCCOSEC(x) | | returns the inverse cosecant of x. |
ARCCOTAN(x) | | returns the inverse cotangent of x. |
INT(x) or INTEGER(x) | | returns the integer portion of a decimal number. INT(3.2) will return 3. |
FIX(x) | | returns the rounded-up non-fractional portion of a decimal number. |
FRAC(x) | | returns the fractional portion of a decimal number. |
LN(x) or LOGE(x) | | returns the logarithm of x to the base e. |
LOG(x) or LOGTEN(x) | | returns the logarithm of x to the base 10. |
LOGX(b,x) | | returns the logarithm of x to the base b. |
DEGTORAD(x) | | converts degrees to radians. |
RADTODEG(x) | | converts radians to degrees. |