Ode
Euler
Computes an approximate solution to the Cauchy problem using Euler's method.
std::vector<double> | euler (double (*f)(double, double), double y0, double a, double b, double h) |

Runge
Computes an approximate solution to the Cauchy problem using the 4th order Runge-Kutta method.
std::vector<double> | runge (double (*f)(double, double), double y0, double a, double b, double h) |