Modulus after division.
C = mod(A, B)
A - a variable: dividend
B - a variable: divisor
C - result of mod(A, B)
C = mod(A, B) computes the modulo of A and B, i.e : A - B .* floor (A ./ B).
This function manages also negative values.
rem, floor.
1.0.0
initial version
Last updated 3 months ago
mod (-1, 3)