unmatrix: Convert a matrix into a vector, with appropriate names
Description
Convert a matrix into a vector, with element names constructed from
the row and column names of the matrix.
Usage
unmatrix(x, byrow=FALSE)
Value
A vector with names constructed from the row and column names from the
matrix. If the the row or column names are missing, ('r1', 'r2', ..,) or
('c1', 'c2', ..) will be used as appropriate.
Arguments
x
matrix
byrow
Logical. If FALSE, the elements within columns will be
adjacent in the resulting vector, otherwise elements within rows
will be adjacent.