The threshold used for a diagonal entry to be an acceptable pivot.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public double DiagonalPivotThreshold { get; set; }
Visual Basic (Declaration)
Public Property DiagonalPivotThreshold As Double
Visual C++
public:
property double DiagonalPivotThreshold {
	double get ();
	void set (double value);
}

Field Value

A double scalar specifying the threshold used for a diagonal entry to be an acceptable pivot.

Remarks

By default, DiagonalPivotThreshold=1.0, i.e. classical partial pivoting.

Exceptions

ExceptionCondition
System..::.ArgumentException is thrown if DiagonalPivotThreshold is not in the interval [0.0,1.0].

See Also