  | NMathFunctionsConj(DoubleSymmetricMatrix) Method | 
            Calculates the complex conjugates of a given matrix's elements. In this case, since
            there is no imaginary part, this method simply returns the given matrix.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static DoubleSymmetricMatrix Conj(
	DoubleSymmetricMatrix A
)
Public Shared Function Conj ( 
	A As DoubleSymmetricMatrix
) As DoubleSymmetricMatrix
public:
static DoubleSymmetricMatrix^ Conj(
	DoubleSymmetricMatrix^ A
)
static member Conj : 
        A : DoubleSymmetricMatrix -> DoubleSymmetricMatrix Parameters
- A  DoubleSymmetricMatrix
 - A matrix.
 
Return Value
DoubleSymmetricMatrixThe given matrix.
See Also