Returns 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 FloatMatrix Transpose(
	FloatMatrix A
)
Visual Basic (Declaration)
Public Shared Function Transpose ( _
	A As FloatMatrix _
) As FloatMatrix
Visual C++
public:
static FloatMatrix^ Transpose(
	FloatMatrix^ A
)

Parameters

A
Type: CenterSpace.NMath.Core..::.FloatMatrix
A matrix.

Return Value

A new matrix B with B[i,k] = A[k,i]. The returned matrix is a new view into the data referenced by A.

Remarks

Data is not copied.

See Also