 | FloatHermPDTriDiagFact Constructor (FloatComplexTriDiagMatrix, Boolean) |
Constructs a FloatHermPDTriDiagFact instance by factoring the given matrix.
Namespace:
CenterSpace.NMath.Core
Assembly:
NMath (in NMath.dll) Version: 7.4
Syntaxpublic FloatHermPDTriDiagFact(
FloatComplexTriDiagMatrix A,
bool estimateConditionNumber
)
Public Sub New (
A As FloatComplexTriDiagMatrix,
estimateConditionNumber As Boolean
)
public:
FloatHermPDTriDiagFact(
FloatComplexTriDiagMatrix^ A,
bool estimateConditionNumber
)
new :
A : FloatComplexTriDiagMatrix *
estimateConditionNumber : bool -> FloatHermPDTriDiagFact
Parameters
- A
- Type: CenterSpace.NMath.CoreFloatComplexTriDiagMatrix
The matrix to factor. The matrix is assumed to be Hermitian and
positive definite. - estimateConditionNumber
- Type: SystemBoolean
If true the condition number
for the matrix will be estimated. This is a rather computationally
expensive operation for large matrices.
Exceptions
RemarksOnly 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