| DoubleSymFactFactor(DoubleSymmetricMatrix, Boolean) Method |
Factors the matrix A so that self represents the factorization
of A.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntax public void Factor(
DoubleSymmetricMatrix A,
bool estimateConditionNumber
)
Public Sub Factor (
A As DoubleSymmetricMatrix,
estimateConditionNumber As Boolean
)
public:
void Factor(
DoubleSymmetricMatrix^ A,
bool estimateConditionNumber
)
member Factor :
A : DoubleSymmetricMatrix *
estimateConditionNumber : bool -> unit
Parameters
- A DoubleSymmetricMatrix
- The matrix to factor.
- estimateConditionNumber Boolean
- If true the condition number
for the matrix will be estimated. This is a rather computationally
expensive operation for large matrices.
See Also