full {gasper} | R Documentation |
full
converts a symmetric sparse matrix, represented as sA
, into a full matrix A
.
full(sA)
sA |
Symmetric sparse matrix, either in a sparse matrix format or in a three-column format, that needs to be converted into a full matrix. |
A
Full matrix constructed from the symmetric sparse matrix sA
.
sA <- pittsburgh$sA
A <- full(sA)