Returns the conjugate of the transpose of a given matrix. The matrix returned is a new view of the same data as the given matrix.

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

Syntax

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

Return Value

A new matrix B with B[i,k] = Conj(A[k,i]).

See Also