RegulaFalsiVariant Enumeration

Specifies the variant of the Regula Falsi method to use.

Definition

Namespace: Numerics.NET.EquationSolvers
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.4
C#
public enum RegulaFalsiVariant

Members

Standard0 The standard Regula Falsi (false position) method.
Illinois1 The Illinois variant, which halves the function value at the unchanged bound to improve convergence.
Pegasus2 The Pegasus variant, which scales the function value at the unchanged bound based on the ratio of function values.
AndersonBjork3 The Anderson-Björk variant, which dynamically adjusts the function value at the unchanged bound for faster convergence.

See Also