7.67.52015-05-06

Mathematical Operators and Functions

Name:

Description:

+

Add

operator

function

Adds two numerical expressions. This is the functional equivalent to the + operator, when you use the + operator with numerical expressions.Add (function)

Sub

operator

function

Subtracts one expression from another. This is the functional equivalent of the - operator.Sub (function)

*

Mul

operator

function

Multiplies two expressions. This is the functional equivalent of the * operator.Mul (function)

/

Div

operator

function

Divides an expression with another. This is the functional equivalent to the / operator.Div (function)

Mod

function & procedure

Returns the remainder resulting from the division of two numbers.Mod (function & procedure)

Neg

function

Returns the negative value of the specified expression. This is the functional equivalent to the - sign.Neg (function)

Cos

function

Returns the cosine value of the specified angle.Cos (function)

Sin

function

Returns the sine value of the specified angle.Sin (function)

Random

function

Returns a measure value between 0 and 1, non-inclusive. Since this function uses the current system time when run inside the printer, it returns a true random value. On the computer, however, the function uses the current data page as its seed to ensure the returned value is constant when you navigate from page to page on your document.Random (function)

Ceil

function

Returns the smallest integer greater than or equal to the specified measure value. Ceil (function)