Click or drag to resize

DoubleSymBandMatrix(DoubleTriDiagMatrix) Constructor

Constructs a DoubleSymBandMatrix instance from a square tridiagonal matrix.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public DoubleSymBandMatrix(
	DoubleTriDiagMatrix A
)

Parameters

A  DoubleTriDiagMatrix
A square tridiagonal matrix.
Exceptions
ExceptionCondition
MatrixNotSquareExceptionThrown if the input matrix, A, is not square.
Remarks
The main diagonal and the first super diagonal are extracted.
See Also