Constructs a DoubleSymPDTriDiagFact instance by factoring the given matrix.
Namespace:
CenterSpace.NMath.MatrixAssembly: NMath (in NMath.dll) Version: 5.1.0.0
Syntax
| C# |
|---|
public DoubleSymPDTriDiagFact( DoubleTriDiagMatrix A ) |
| Visual Basic (Declaration) |
|---|
Public Sub New ( _ A As DoubleTriDiagMatrix _ ) |
| Visual C++ |
|---|
public: DoubleSymPDTriDiagFact( DoubleTriDiagMatrix^ A ) |
Parameters
- A
- Type: CenterSpace.NMath.Matrix..::.DoubleTriDiagMatrix
The matrix to factor. The matrix is assumed to be symmetric and positive definite.
Remarks
Only the main diagonal and first subdiagonal of the matrix A
are referenced. The superdiagonal of A is ignored.
Exceptions
| Exception | Condition |
|---|---|
| CenterSpace.NMath.Core..::.MatrixNotSquareException | Thrown if the matrix is not square. |