Interface OdeSystem

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface OdeSystem
First-order ordinary differential equation y' = f(t,y).
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    derivatives(double time, double[] state, double[] parameters, double[] data, double[] derivative)
    Writes the state derivative into derivative.
  • Method Details

    • derivatives

      void derivatives(double time, double[] state, double[] parameters, double[] data, double[] derivative)
      Writes the state derivative into derivative.