double(* ridder_callback)(double x, void *p)
Callback function for Ridder's root finder.
Definition findroot.h:28
int findroot_Newton(double x1, double x2, double *rts, double xacc, newton_callback func, void *p)
Finds the root of a function using Newton's method.
Definition findroot.c:20
void(* newton_callback)(double x, double *f, double *df, void *p)
Callback function for Newton-Raphson root finder.
Definition findroot.h:20
double findroot_Ridder(double x1, double x2, double xacc, ridder_callback func, void *p)
Finds the root of a function using Ridder's method.
Definition findroot.c:88