derivativeRootFinder.hpp
Go to the documentation of this file.
71 double derivativeRootFinder(T f, U df, double x_0, DerivativeRootFinder type,double precision = 1e-12, int max_iter = 100) {
122 double derivativeRootFinder(T f, double x_0, DerivativeRootFinder type,double precision = 1e-12, int max_iter = 100, double h = 1e-6) {
Class implements adapter for gsl_function_fdf.
Definition: GslFunctionFdfAdapter.hpp:23
File contains adapter of GSL Function.
Secant method.
Definition: cadHoliday.cpp:3
Class implements adapter for gsl_function.
Definition: GslFunctionAdapter.hpp:25
Steffensen method.
DerivativeRootFinder
Types of root finding algorithms using derivatives.
Definition: derivativeRootFinder.hpp:48
double derivativeRootFinder(T f, double x_0, DerivativeRootFinder type, double precision=1e-12, int max_iter=100, double h=1e-6)
Function finds roots basing on derivative.
Definition: derivativeRootFinder.hpp:122
File contains adapter of GSL Function.
Newton Raphson method.