Package jline.lib.ode

Interface OdeFunction


public interface OdeFunction
Functional interface for the ODE right-hand side: dy/dt = f(t, y). The function writes derivatives into the yp array.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    evaluate(double t, double[] y, double[] yp)
     
  • Method Details

    • evaluate

      void evaluate(double t, double[] y, double[] yp)