Returns the transpose of this matrix.

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

Syntax

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

Return Value

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

Remarks

The returned matrix has its own copy of the data.

See Also