| DoubleSymPDTriDiagFact(DoubleTriDiagMatrix, Boolean) Constructor |
Constructs an DoubleSymPDTriDiagFact instance by factoring the given matrix,
optionally estimating the condition number of the matrix.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntax public DoubleSymPDTriDiagFact(
DoubleTriDiagMatrix A,
bool estimateConditionNumber
)
Public Sub New (
A As DoubleTriDiagMatrix,
estimateConditionNumber As Boolean
)
public:
DoubleSymPDTriDiagFact(
DoubleTriDiagMatrix^ A,
bool estimateConditionNumber
)
new :
A : DoubleTriDiagMatrix *
estimateConditionNumber : bool -> DoubleSymPDTriDiagFact
Parameters
- A DoubleTriDiagMatrix
- The matrix to factor. The matrix is assumed to be
positive definite.
- estimateConditionNumber Boolean
- If true the condition number
for the matrix will be estimated. Note that this is a rather computationally
expensive operation for large matrices.
See Also