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/row.html
row {base}R Documentation

Row Indexes

Usage

row(x, as.factor=FALSE)

Arguments

x

a matrix.

as.factor

a logical value indicating whether the value should be returned as a factor rather than as numeric.

Value

An integer matrix with the same dimensions as x and whose ij-th element is equal to i.

See Also

col to get columns.

Examples

x <- matrix(1:12, 3, 4)
# extract the diagonal of a matrix
dx <- x[row(x)==col(x)]
dx

# create an identity 5-by-5 matrix
x <- matrix(0,nr=5,nc=5)
x[row(x)==col(x)] <- 1
x

[Package base version 0.60 ]