Implements the Van Wijngaarden-Dekker-Brent Method the recommended approach in order to find the solution for a general one-dimensional function where the function's values only (and not its derivative or functional form) are available.
Implements the Van Wijngaarden-Dekker-Brent Method the recommended approach in order to find the solution for a general one-dimensional function where the function's values only (and not its derivative or functional form) are available.
public double Brent(double);
Implements the Van Wijngaarden-Dekker-Brent Method the recommended choice for general one-dimensional root finding where a function's values only (and not its derivative or functional form) are available.
public double Brent(double,double,double,long);
EquationSolver Class | WebCab.COM.Math.EquationSolver Namespace | Brent - An implementation of the Brent algorithm which allows the initial bracketing interval and the maximum number of iterations to be set.