| DoubleSymFact(DoubleSymmetricMatrix, Boolean) Constructor |
Constructs a DoubleSymFact instance by factoring the given matrix.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntax public DoubleSymFact(
DoubleSymmetricMatrix A,
bool estimateConditionNumber
)
Public Sub New (
A As DoubleSymmetricMatrix,
estimateConditionNumber As Boolean
)
public:
DoubleSymFact(
DoubleSymmetricMatrix^ A,
bool estimateConditionNumber
)
new :
A : DoubleSymmetricMatrix *
estimateConditionNumber : bool -> DoubleSymFact
Parameters
- A DoubleSymmetricMatrix
- The matrix to factor. The matrix is assumed to be symmetric.
- estimateConditionNumber Boolean
- If true the condition number
for the matrix will be estimated. This is a rather computationally
expensive operation for large matrices.
Remarks Only the upper triangular part of the matrix A
is referenced.
See Also