  | NMathFunctionsToGeneralMatrix(DoubleComplexTriDiagMatrix) Method | 
            Converts a tridiagonal matrix to a general matrix.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static DoubleComplexMatrix ToGeneralMatrix(
	DoubleComplexTriDiagMatrix B
)
Public Shared Function ToGeneralMatrix ( 
	B As DoubleComplexTriDiagMatrix
) As DoubleComplexMatrix
public:
static DoubleComplexMatrix^ ToGeneralMatrix(
	DoubleComplexTriDiagMatrix^ B
)
static member ToGeneralMatrix : 
        B : DoubleComplexTriDiagMatrix -> DoubleComplexMatrix Parameters
- B  DoubleComplexTriDiagMatrix
 - A tridiagonal matrix.
 
Return Value
DoubleComplexMatrix
            A new general matrix containing the values of the tridiagonal
            matrix.
             
See Also