rangeR Documentation

Range of Values

Description

range returns a vector containing the minimum and maximum of all the given arguments.

Usage

## S4 method for signature 'fm'
range(x, ..., na.rm = FALSE)

## S4 method for signature 'fmV'
range(x, ..., na.rm = FALSE)

Arguments

x

a FlashR vector or matrix.

...

any FlashR vectors or matrices.

na.rm

logical, indicating if NA should be omitted.

Examples

mat <- fm.runif.matrix(100, 10)
range(mat)