Transposes a lower triangular matrix.

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

Syntax

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

Parameters

A
Type: CenterSpace.NMath.Matrix..::.DoubleComplexLowerTriMatrix
A lower triangular matrix.

Return Value

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

Remarks

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

See Also