  | NMathFunctionsToGeneralMatrix(FloatSymCsrSparseMatrix) 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 FloatCsrSparseMatrix ToGeneralMatrix(
	FloatSymCsrSparseMatrix A
)
Public Shared Function ToGeneralMatrix ( 
	A As FloatSymCsrSparseMatrix
) As FloatCsrSparseMatrix
public:
static FloatCsrSparseMatrix^ ToGeneralMatrix(
	FloatSymCsrSparseMatrix^ A
)
static member ToGeneralMatrix : 
        A : FloatSymCsrSparseMatrix -> FloatCsrSparseMatrix Parameters
- A  FloatSymCsrSparseMatrix
 - A symmetric matrix.
 
Return Value
FloatCsrSparseMatrix
            A new general sparse matrix in CSR format containing the values of the symmetric
            matrix.
             
See Also