Click or drag to resize

NMathFunctionsTranspose(FloatUpperTriMatrix) Method

Transposes an upper triangular matrix.

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

Parameters

A  FloatUpperTriMatrix
An upper triangular matrix.

Return Value

FloatLowerTriMatrix
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