

   RRooww IInnddeexxeess

        row(x, as.factor=FALSE)

   AArrgguummeennttss::

          x: a matrix.

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

   VVaalluuee::

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

   SSeeee AAllssoo::

        `col' to get columns.

   EExxaammpplleess::

        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

