mod: MATLAB mod/rem functions

View source: R/mod.R

modR Documentation

MATLAB mod/rem functions

Description

Provides modulus and remainder after division.

Usage

mod(x, y)
rem(x, y)

Arguments

x, y

numeric vectors or objects

Value

Returns vector containing result of the element by element operations.

Author(s)

P. Roebuck proebuck1701@gmail.com

Examples

## same results with x, y having the same sign
mod(5, 3)
rem(5, 3)
## same results with x, y having different signs
mod(-5, 3)
rem(-5, 3)

matlab documentation built on June 2, 2022, 1:09 a.m.