numeric

Object

numeric.abs() Absolute-value function. The absolute value of a number is the number without its sign.
numeric.aCos() Returns the angle whose cosine is the value passed as the argument.
numeric.aSin() Determines the arcSine of a number. The arcSine is the angle whose sine is number.
numeric.atn() ArcTangent function. The arcTangent is the angle whose tangent is number.
numeric.bitAnd() Performs a bitwise logical AND operation.
numeric.bitMaskClear() Performs a bitwise mask clear operation.
numeric.bitMaskRead() Performs a bitwise mask read operation. Returns an integer, created from length bits of number, beginning at start.
numeric.bitMaskSet() Performs a bitwise mask set operation.
numeric.bitNot() Performs a bitwise logical NOT operation.
numeric.bitOr() Performs a bitwise logical OR operation.
numeric.bitSHLN() Performs a bitwise shift-left, no-rotation operation.
numeric.bitSHRN() Performs a bitwise shift-right, no-rotation operation.
numeric.bitXor() Performs a bitwise logical XOR operation.
numeric.ceiling() Determines the closest integer that is greater than a specified number.
numeric.cos() Calculates the cosine of an angle that is entered in radians. A number; the cosine of the angle.
numeric.decrementValue() this function is deprecated, use instead the -- operator;Decrements the current number by one
numeric.exp() Calculates the exponent whose base is e that represents number. The constant e equals 2.71828182845904, the base of the natural logarithm. This function is the inverse of Log, the natural logarithm of number.
numeric.fix() Converts a real number to an integer.
numeric.floor() Calculates the closest integer that is smaller than number.
numeric.formatBaseN() String Converts number to a string, in the base specified by radix. For example: #FormatBaseN(1024,16)#
numeric.incrementValue() this function is deprecated, use instead the ++ operator;Increments the current number by one
numeric.int() Calculates the closest integer that is smaller than number.
numeric.log() Calculates the natural logarithm of a number. Natural logarithms are based on the constant e (2.71828182845904).
numeric.log10() Calculates the logarithm of number, to base 10.
numeric.max() Determines the greater of two numbers.
numeric.min() Determines the lesser of two numbers.
numeric.round() Rounds a number to the closest integer.
numeric.sgn() Determines the sign of a number.
numeric.sin() Calculates the sine of an angle that is entered in radians.
numeric.sqr() Calculates the square root of a number.
numeric.tan() Calculates the tangent of an angle that is entered in radians.

See also