Difference between revisions of "Mod"

From MultiCharts
Jump to navigation Jump to search
m
m (Reverted edits by 176.8.90.7 (talk) to last revision by JoshM)
 
(One intermediate revision by one other user not shown)
(No difference)

Latest revision as of 13:12, 13 February 2012

Returns the remainder from dividing one specified numerical expression by another (i.e. the modulus).

Usage

Mod(Dividend, Divisor);

Where:

Dividend - a numerical expression.
Divisor - a numerical expression.

Example

Mod(25, 7);

Will return a value of 4.