Implements Regula Falsi (or Method of False Position) which is a variant of the Secant method which is less efficient but more stable.
Implements Regula Falsi (or Method of False Position) which is a variant of the Secant method which is less efficient but more stable.
public double RegulaFalsi(double);
Implements Regula Falsi (or Method of False Position) which is a variant of the Secant method which is less efficient but more stable.
public double RegulaFalsi(double,double,double,long);
EquationSolver Class | WebCab.COM.Math.EquationSolver Namespace | Regula-Falsi - Implements the Method of False Proposition and allows the user to set the initial bracketing interval and the maximum number of iterations used.