RootBracketingSolver.GetRegulaFalsiPoint Method

Calculates the next approximation point using the Regula Falsi method.

Definition

Namespace: Numerics.NET.EquationSolvers
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.4
C#
protected double GetRegulaFalsiPoint()

Return Value

Double
The next approximation point for the root of the function.

Remarks

The Regula Falsi method is an iterative numerical technique for finding the root of a function. This method computes the point based on the current bounds and their corresponding function values. Ensure that CurrentLowerBound, CurrentUpperBound, fa, and fb are properly initialized before calling this method.

See Also