Calculates the complex conjugates of a given matrix's elements.

Namespace:  CenterSpace.NMath.Matrix
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public static DoubleComplexLowerTriMatrix Conj(
	DoubleComplexLowerTriMatrix A
)
Visual Basic (Declaration)
Public Shared Function Conj ( _
	A As DoubleComplexLowerTriMatrix _
) As DoubleComplexLowerTriMatrix
Visual C++
public:
static DoubleComplexLowerTriMatrix^ Conj(
	DoubleComplexLowerTriMatrix^ A
)

Return Value

A new matrix containing the complex conjugates of A.

See Also