SuperLU.ColumnOrderingMethod Property |
The method used to permute the columns of the
input matrix.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntaxpublic SuperLU. ColumnOrdering ColumnOrderingMethod { get; set; }
Public Property ColumnOrderingMethod As SuperLU. ColumnOrdering
Get
Set
public:
property SuperLU. ColumnOrdering ColumnOrderingMethod {
SuperLU. ColumnOrdering get ();
void set (SuperLU. ColumnOrdering value);
}
member ColumnOrderingMethod : SuperLU. ColumnOrdering with get, set
Property Value
Type:
SuperLU.ColumnOrdering
A
ColumnOrdering scalar specifying how the columns
of the input matrix are to be permuted for sparsity preservation.
value | method |
---|
Natural | natural ordering, that is ,
I the identity matrix. |
MinimumDegreeAtPlusA | minimum degree ordering on the structure of
 |
MinimumDegreeAtA | minimum degree ordering on the structure of
 |
ColumnApproximateMinimumDegree | column approximate minimum degree ordering |
ExceptionsException | Condition |
---|
ArgumentException |
is thrown if value is not
one of the above values.
|
Remarks
By default, value = SuperLU.ColumnOrderingMethod.ColumnApproximateMinimumDegree.
See Also