You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 14 Next »

This function returns dividend - (divisor * floor(dividend / divisor)).

The following functions are used:

Syntax
modulus(dividend, divisor) #Output: Number
The number divisor cannot be equal to 0.
Examples
Parser expressionDescription
modulus(4,2)

This example returns 0.0

4 - (2* floor(4/2)) = 4 - (2*2) = 0


Additional information

Parameters used in this function

ParameterInput (data type)Description
dividend

NUMBER

Any given number.
divisor

NUMBER

Any given number other than 0.
Output

This function returns a NUMBER