Click or drag to resize

ILUTPPreconditionerDropTolerance Property

Gets or sets the absolute drop tolerance which indicates below what absolute value an entry will be dropped from the matrix. The standard value is 0.0001.

Namespace: Altaxo.Calc.LinearAlgebra.Complex.Solvers
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public double DropTolerance { get; set; }

Property Value

Double
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionThrown if a negative value is provided.
Remarks

The values should always be positive and can be larger than 1.0. A low value will keep more small numbers in the preconditioner matrix. A high value will remove more small numbers from the preconditioner matrix.

Note that any changes to the DropTolerance after creating the preconditioner will invalidate the created preconditioner and will require a re-initialization of the preconditioner.

See Also