Click or drag to resize

NMathFunctionsTranspose(DoubleComplexLowerTriMatrix) Method

Transposes a lower triangular matrix.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static DoubleComplexUpperTriMatrix Transpose(
	DoubleComplexLowerTriMatrix A
)

Parameters

A  DoubleComplexLowerTriMatrix
A lower triangular matrix.

Return Value

DoubleComplexUpperTriMatrix
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