Implements the Secant Method without the initial bracketing interval needing to be given.
Implements the Secant Method without the initial bracketing interval needing to be given.
public double Secant(double);
Implements the Secant Method where the initial bracketing interval needs to be given.
public double Secant(double,double,double,long);
EquationSolver Class | WebCab.COM.Math.EquationSolver Namespace | Secant - Implementation of the Secant method which allows the initial bracketing interval and the maximum number of iterations to be set.