full: Conversion of Symmetric Sparse Matrix to Full Matrix

View source: R/full.R

fullR 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

fullup

Examples

sA <- pittsburgh$sA
A <- full(sA)

gasper documentation built on Oct. 27, 2023, 1:07 a.m.