matrix_to_list_of_cols() A list of vectors, each of which is a column from x.
matrix_to_list_of_rows(), A list of vectors, each of which is a row from x.
Details
matrix_to_list_of_cols() and `matrix_to_list_of_rows() are internal functions, for use by developers, and would not normally be called directly by end users.
Examples
m <- matrix(1:12, nrow =3)matrix_to_list_of_cols(m)matrix_to_list_of_rows(m)