Returns the transpose of this matrix.

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

Syntax

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

Return Value

A matrix with [i,k] = [k,i].

Remarks

The matrix returned is a new view of the same data referenced by this matrix.

See Also