This help topic is for R version 0.60. For the current version of R, try https://stat.ethz.ch/R-manual/R-patched/library/base/html/mat.or.vec.html
mat.or.vec {base}R Documentation

Create a Matrix or a Vector

Description

mat.or.vec creates an nr by nc zero matrix if nc is greater than 1, and a zero vector of length nr if nc equals 1.

Usage

mat.or.vec(nr, nc)

Examples

mat.or.vec(3, 1)
mat.or.vec(3, 2)

[Package base version 0.60 ]