The method used in the numerical factorization of the permuted
input matrix.
Namespace:
Imsl.Math
Assembly:
ImslCS (in ImslCS.dll) Version: 6.5.0.0
Syntax
C# |
---|
public ComplexSparseCholesky..::.NumericFactorization NumericFactorizationMethod { get; set; } |
Visual Basic (Declaration) |
---|
Public Property NumericFactorizationMethod As ComplexSparseCholesky..::.NumericFactorization |
Visual C++ |
---|
public: property ComplexSparseCholesky..::.NumericFactorization NumericFactorizationMethod { ComplexSparseCholesky..::.NumericFactorization get (); void set (ComplexSparseCholesky..::.NumericFactorization value); } |
Field Value
An int value equal to StandardMethod or MultiFrontalMethod representing the method used during the numeric factorization phase:Method Name | Description |
---|---|
StandardMethod | standard method as described by George/Liu (1981). This is the default. |
MultiFrontalMethod | multifrontal method |
Exceptions
Exception | Condition |
---|---|
System..::.ArgumentException | is thrown when the value for NumericFactorizationMethod is not NumericFactorization.StandardMethod or NumericFactorization.MultiFrontalMethod. |