rem | R Documentation |
Rreturns the remainder after division of a
by b
,
where a
is the dividend and b
is the divisor. This function is
often called the remainder operation. The rem
function follows the
convention that rem(a,0)
is NaN
.
rem(a, b)
a |
the dividend |
b |
the divisor |
The remainder
Waldir Leoncio
rem(23, 5) rem(1:5, 3) rem(c(-4, -1, 7, 9), 3) #FIXME rem(c(0, 3.5, 5.9, 6.2, 9, 4 * pi), 2 * pi)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.