I have forgotten
my Password

Or login with:

  • Facebookhttp://facebook.com/
  • Googlehttps://www.google.com/accounts/o8/id
  • Yahoohttps://me.yahoo.com
MathsCalculus

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)
Icon

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)