Learn R Programming

spbal (version 1.0.1)

mod: Vector modulus.

Description

Computes the remainder of dividing a by n using the modulo operator. This function uses a trick to avoid using the modulo operator directly, which can be slow for large values of a and n.

Value

The remainder of dividing a by n, of type T in the form of a NumericVector.

Arguments

a

The input value of type T. This is a NumericVector.

n

The divisor of type int.

Author

Phil Davies.