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