Transposes an upper triangular matrix.

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

Syntax

C#
public static FloatLowerTriMatrix Transpose(
	FloatUpperTriMatrix A
)
Visual Basic (Declaration)
Public Shared Function Transpose ( _
	A As FloatUpperTriMatrix _
) As FloatLowerTriMatrix
Visual C++
public:
static FloatLowerTriMatrix^ Transpose(
	FloatUpperTriMatrix^ A
)

Parameters

A
Type: CenterSpace.NMath.Matrix..::.FloatUpperTriMatrix
An upper triangular matrix.

Return Value

The transpose of the given matrix. The transpose of an upper triangular matrix is a lower triangular matrix.

Remarks

No data is copied. The returned matrix references the same data as the given matrix.

See Also