Skip to contents

nrow and ncol return the number of rows and columns present in a Stream object.

Usage

nrow.Rcpp_Stream(x)

ncol.Rcpp_Stream(x)

Arguments

x

A Stream object.

Value

A numeric value.

See also

dim which returns all dimensions.

Author

Simon Garnier, garnier@njit.edu

Examples

if (FALSE) {
live <- stream(0)
nrow(live)
ncol(live)
release(live)
}