|  | DoubleComplexTriDiagMatrix(DoubleComplexBandMatrix) Constructor | 
            Constructs a DoubleComplexTriDiagMatrix instance by extracting the tridiagonal part of a 
            banded matrix.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic DoubleComplexTriDiagMatrix(
	DoubleComplexBandMatrix A
)
Public Sub New ( 
	A As DoubleComplexBandMatrix
)
public:
DoubleComplexTriDiagMatrix(
	DoubleComplexBandMatrix^ A
)
new : 
        A : DoubleComplexBandMatrix -> DoubleComplexTriDiagMatrixParameters
- A  DoubleComplexBandMatrix
- A banded matrix.
 Remarks
Remarks
            The tridiagonal part of A consists of the 
            main diagonal, the superdiagonal, and the subdiagonal.
            
 See Also
See Also