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 DoubleComplexMatrix ToGeneralMatrix(
	DoubleComplexLowerTriMatrix A
)
Visual Basic (Declaration)
Public Shared Function ToGeneralMatrix ( _
	A As DoubleComplexLowerTriMatrix _
) As DoubleComplexMatrix
Visual C++
public:
static DoubleComplexMatrix^ ToGeneralMatrix(
	DoubleComplexLowerTriMatrix^ A
)

Parameters

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

Return Value

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

See Also