Returns the conjugate transpose of this matrix.

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

Syntax

C#
public DoubleComplexBandMatrix ConjTranspose()
Visual Basic (Declaration)
Public Function ConjTranspose As DoubleComplexBandMatrix
Visual C++
public:
DoubleComplexBandMatrix^ ConjTranspose()

Return Value

A banded matrix matrix B such that B[i,k] = conj(A[k,i]).

Remarks

The returned matrix has its own copy of the data.

See Also