Returns the transpose of this matrix.

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

Syntax

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

Return Value

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

Remarks

The returned matrix has its own copy of the data.

See Also