Root Bracketing Solver.Get Regula Falsi Point 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#
The next approximation point for the root of the function.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.4
protected double GetRegulaFalsiPoint()
Return Value
DoubleThe 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.