MOD
From STX Wiki
Jump to navigationJump to search
Contents
MOD
Usage:
MOD a b
Inputs:
a | number or vector |
b | number or vector |
Outputs:
y | number or vector (same type as a) |
Function:
Compute a modulo b.
if a and b are numbers: y = a mod b
if a is a vector and b a number: y[i] = a[i] mod b
if a and b are vectors: y[i] = a[i] mod b[i]
If the value of b|b[i] is zero, the result y|y[i] is also set to zero.