Matrix2list {SSBtools} | R Documentation |
Convert matrix to sparse list
Description
Convert matrix to sparse list
Usage
Matrix2list(x)
Matrix2listInt(x)
Arguments
x |
Input matrix |
Details
Within the function, the input matrix is first converted to a dgTMatrix matrix (Matrix package).
Value
A two-element list: List of row numbers (r) and a list of numeric or integer values (x)
Note
Matrix2listInt
convers the values to integers by as.integer
and no checking is performed. Thus, zeros are possible.
Author(s)
Øyvind Langsrud
Examples
m = matrix(c(0.5, 1.1, 3.14, 0, 0, 0, 0, 4, 5), 3, 3)
Matrix2list(m)
Matrix2listInt(m)
[Package SSBtools version 1.5.2 Index]