  | NMathFunctionsToGeneralMatrix(DoubleSymCsrSparseMatrix) Method | 
            Converts a sparse symmetric matrix in compressed row (CSR) to a
            general sparse matrix in CSR format.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static DoubleCsrSparseMatrix ToGeneralMatrix(
	DoubleSymCsrSparseMatrix A
)
Public Shared Function ToGeneralMatrix ( 
	A As DoubleSymCsrSparseMatrix
) As DoubleCsrSparseMatrix
public:
static DoubleCsrSparseMatrix^ ToGeneralMatrix(
	DoubleSymCsrSparseMatrix^ A
)
static member ToGeneralMatrix : 
        A : DoubleSymCsrSparseMatrix -> DoubleCsrSparseMatrix Parameters
- A  DoubleSymCsrSparseMatrix
 - A symmetric matrix.
 
Return Value
DoubleCsrSparseMatrix
            A new general sparse matrix in CSR format containing the values of the symmetric
            matrix.
             
See Also