Factors the matrix A so that self represents the LDL' factorization
of A.
Namespace:
CenterSpace.NMath.MatrixAssembly: NMath (in NMath.dll) Version: 5.1.0.0
Syntax
| C# |
|---|
public void Factor( FloatComplexTriDiagMatrix A ) |
| Visual Basic (Declaration) |
|---|
Public Sub Factor ( _ A As FloatComplexTriDiagMatrix _ ) |
| Visual C++ |
|---|
public: void Factor( FloatComplexTriDiagMatrix^ A ) |
Parameters
- A
- Type: CenterSpace.NMath.Matrix..::.FloatComplexTriDiagMatrix
The matrix to factor. The matrix is assumed to be Hermitian.
Remarks
Only the main diagonal and first subdiagonal of the matrix A
are referenced and the main diagonal is assumed to be real. The imaginary part of
the main diagonal and the superdiagonal of A are ignored.
Exceptions
| Exception | Condition |
|---|---|
| CenterSpace.NMath.Core..::.MatrixNotSquareException | Thrown if the factored matrix was not square. |