Converts a triangular matrix to a general matrix.

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

Syntax

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

Parameters

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

Return Value

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

See Also