Click or drag to resize

NMathFunctionsToGeneralMatrix(DoubleUpperTriMatrix) Method

Converts a triangular matrix to a general matrix.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static DoubleMatrix ToGeneralMatrix(
	DoubleUpperTriMatrix A
)

Parameters

A  DoubleUpperTriMatrix
An upper triangular matrix.

Return Value

DoubleMatrix
A new general matrix containing the values of A in the upper triangular region, and zeros in the lower triangular region.
See Also