Mod function
Gets mod of a to base b
mod(a,b)
a |
input- an integer |
b |
input - an integer |
remainder of a/b or mod(a,b)
John Lawson
mod(5,3) ## The function is currently defined as mod<-function(a,b) {a-b*floor(a/b)}
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.