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