Implements the Newton-Raphson method where the initial point is taken to be the origin and the maximum number of iterations is 1,000.
Implements the Newton-Raphson method where the initial point is taken to be the origin and the maximum number of iterations is 1,000.
public double NewtonRaphson(double);
Implements the Newton-Raphson method where the initial point, maximum number of iterations and the precision are passed by the user.
public double NewtonRaphson(double,double,long);
EquationSolver Class | WebCab.Libraries.Math.EquationSolver Namespace | Newton-Raphson - Offers the Newton-Raphson method which allows the initial point and the maximum number of iterations to be set.