rem | R Documentation |
Integer remainder function.
rem(n, m)
n |
numeric vector (preferably of integers) |
m |
must be a scalar integer (positive, zero, or negative) |
rem(n, m)
is the same modulo operator and returns n\,mod\,m.
mod(n, 0)
is NaN
, and the result always has the same sign
as n
(for n != m
and m != 0
).
a numeric (integer) value or vector/matrix
mod
, div
rem(c(-5:5), 5) rem(c(-5:5), -5) rem(0, 1) #=> 0 rem(1, 1) #=> 0 (always for n == m) rem(1, 0) # NA (should be NaN) rem(0, 0) #=> NaN
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.