Mathematical Function
|
Description
|
abs(num)
|
Returns the absolute value of num, where num is any valid numeric expression.
|
acos(angle)
|
Returns the arc cosine of angle, where angle is any valid numeric expression representing an angle measurement in radians.
|
add( addend1 , addend2 ,...)
|
Returns sum , where sum is calculated as:
_____ sum = addend1 + addend2 + ...
In this function, addend1 , addend2 , ... are any valid numeric expressions.
|
asin(angle)
|
Returns the arc sine of angle, where angle is any valid numeric expression representing an angle measurement in radians.
|
atan(angle)
|
Returns the arc tangent of angle, where angle is any valid numeric expression representing an angle measurement in radians.
|
cos(angle)
|
Returns the cosine of angle, where angle is any valid numeric expression representing an angle measurement in radians.
|
cosh(angle)
|
Returns the hyperbolic cosine of angle, where angle is any valid numeric expression representing an angle measurement in radians.
|
deviation( array )
|
Returns the standard deviation of the elements of the the specified array. The array elements must be numeric types.
|
divide(dividend,divisor1, divisor2,...)
|
Returns quotient , where quotient is calculated as:
_____ quotient = _ dividend / divisor / divisor2 / ...
In this function, dividend, divisor1 , divisor2 , ... are any valid numeric expressions.
|
exp(x)
|
Returns e x ; that is, e (the natural logarithmic base) raised to the x th power.
|
log(x)
|
Returns the natural (base e) logarithm of x.
|
log10(x)
|
Returns the common (base 10) logarithm of x.
|
modulo( num1 , num2 ,...)
|
Returns the result of the modulus operation, calculated as follows:
_____ result = _ num1 % num2 % ...
In this function, arg1 , arg2 , ... are any valid numeric expressions.
|
multiply( factor1 , factor2 ,...)
|
Returns product , where product is calculated as follows:
_____ product = _ factor1 * factor2 * ...
In this function, factor1 , factor2 , ... are any valid numeric expressions.
|
pow(x, y)
|
Returns x y ; that is, x raised to the y th power.
|
rand(range, seed)
|
Returns a random scalar value or an array of values between 0 and range. If you do not specify a seed argument, the function uses the object ID of the rand object as its seed.
|
sin(angle)
|
Returns the sine of angle, where angle is any valid numeric expression representing an angle measurement in radians.
|
sinh(angle)
|
Returns the hyperbolic sine of angle, where angle is any valid numeric expression representing an angle measurement in radians.
|
sqrt(x)
|
Returns the square root of x, where x is any valid numeric expressions.
|
sub(minuend,subtrahend1, subtrahend2,...)
|
Returns diff , where diff is calculated as follows:
_____ diff = _ minuend - subtrahend1 - subtrahend2 - ...
In this function, minuend , subtrahend1 , subtrahend2 , ... are any valid numeric expressions.
|
tan(angle)
|
Returns the tangent of angle, where angle is any valid numeric expression representing an angle measurement in radians.
|
tanh(angle)
|
Returns the hyperbolic tangent of angle, where angle is any valid numeric expression representing an angle measurement in radians.
|