Scilab Function

modulo - symetric arithmetic remainder modulo m

pmodulo - positive arithmetic remainder modulo m

Calling Sequence

i=modulo(n,m)
i=pmodulo(n,m)

Parameters

Description

modulo computes i= n (modulo m) i.e. remainder of n divided by m (n and m integers).

i = n - m .* int (n ./ m). Here the answer may be negative if n or m are negative.

pmodulo computes i = n - m .* floor (n ./ m), the answer is positive or zero

Examples