mod, %

mod, %

Modulo: remainder of integer division of values on first expression by values on second expression

Result = expression1 mod expression2 # pcrcalc
Result = expression1 % expression2 # python
expression1
spatial, non spatial scalar
expression2
spatial, non spatial scalar
Result
spatial; non spatial if expression1 and expression2 are non spatial scalar

Operation

For each cell, the value on expression1 is divided (integer division) by the value on expression2. This remainder of this integer division is assigned to the corresponding cell on Result.

Notes

A cell with 0 on expression2 is assigned a missing value on Result. A cell with missing value on expression1 and/or expression2 is assigned a missing value on Result.

Group

This operation belongs to the group of Arithmetic operators

See Also

idiv, //, / or div

Examples

  1. • pcrcalc
    binding
    Result = Result.map;
    Expr1 = Expr1.map;
    Expr2 = Expr2.map;
    initial
    report Result = Expr1 mod Expr2;

    • python
    Expr1 = readmap(“Expr1.map”)
    Expr2 = readmap(“Expr2.map”)
    Result = Expr1 % Expr2

    Result.map

    Expr1.map

    Expr2.map

    _images/mod_Result.png _images/slash_Expr1.png _images/slash_Expr2.png

Table Of Contents

Previous topic

min

Next topic

ne or !=