  | NMathFunctionsToGeneralMatrix(FloatComplexUpperTriMatrix) Method | 
            Converts a triangular matrix to a general matrix.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static FloatComplexMatrix ToGeneralMatrix(
	FloatComplexUpperTriMatrix A
)
Public Shared Function ToGeneralMatrix ( 
	A As FloatComplexUpperTriMatrix
) As FloatComplexMatrix
public:
static FloatComplexMatrix^ ToGeneralMatrix(
	FloatComplexUpperTriMatrix^ A
)
static member ToGeneralMatrix : 
        A : FloatComplexUpperTriMatrix -> FloatComplexMatrix Parameters
- A  FloatComplexUpperTriMatrix
 - A lower triangular matrix.
 
Return Value
FloatComplexMatrix
            A new general matrix containing the values of 
A in the lower
            triangular region, and zeros in the upper triangular region.
             
See Also