Click or drag to resize

FloatHermPDTriDiagFact(FloatComplexTriDiagMatrix) Constructor

Constructs a FloatHermPDTriDiagFact instance by factoring the given matrix. By default the condition number for the matrix will not be computed and will not be available from the ConditionNumber method.

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

Parameters

A  FloatComplexTriDiagMatrix
The matrix to factor. The matrix is assumed to be Hermitian and positive definite.
Exceptions
ExceptionCondition
MatrixNotSquareExceptionThrown if the matrix is not square.
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.
See Also