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