full {gasper} | R Documentation |
Conversion of Symmetric Sparse Matrix to Full Matrix
Description
full
converts a symmetric sparse matrix, represented as sA
, into a full matrix A
.
Usage
full(sA)
Arguments
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. |
Value
A
Full matrix constructed from the symmetric sparse matrix sA
.
See Also
Examples
sA <- pittsburgh$sA
A <- full(sA)
[Package gasper version 1.1.6 Index]