Uses of Class
rkm.ode.ODE

Packages that use ODE
rkm   
rkm.ode   
 

Uses of ODE in rkm
 

Methods in rkm that return ODE
 ODE RKModel.getODE()
           
 

Methods in rkm with parameters of type ODE
 void RKModel.setODE(ODE ode)
          Set the ODE to solve.
 

Constructors in rkm with parameters of type ODE
RKModel(ODE ode, ButcherMatrix bm)
          Create a new model to solve the given ODE using the given ButcherMatrix.
 

Uses of ODE in rkm.ode
 

Subclasses of ODE in rkm.ode
 class ExampleODE1
          Example ODE: y' = 1 / x.
 class ExampleODE2
          Example ODE: y' = y.
 class ExampleODE3
          Example ODE: y' = -y.
 class ExampleODE4
          Example ODE: y' = xy.
 class ExampleODE5
          Example ODE: y' = 1 / 2y.
 class ExampleODE6
          Example ODE: y' = p(y - 1).
 class ExampleODE7
          Example ODE: y' = p(y - cos(x)).
 

Methods in rkm.ode that return ODE
static ODE[] ODE.getAvailableODEs()