Uses of Class
rkm.butcher.ButcherMatrix

Packages that use ButcherMatrix
rkm   
rkm.butcher   
 

Uses of ButcherMatrix in rkm
 

Methods in rkm that return ButcherMatrix
 ButcherMatrix RKModel.getButcherMatrix()
           
 

Methods in rkm with parameters of type ButcherMatrix
 void RKModel.setButcherMatrix(ButcherMatrix bm)
          Set the ButcherMatrix to use.
 

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

Uses of ButcherMatrix in rkm.butcher
 

Subclasses of ButcherMatrix in rkm.butcher
 class CustomButcherMatrix
          A custom-built Butcher matrix.
 class ForwardEuler
          Butcher matrix for the forward Euler method.
 class Heun
          Butcher matrix for Heun's method.
 class Merson
          Butcher matrix for Merson's method.
 class Midpoint
          Butcher matrix for the midpoint method.
 class ModifiedEuler
          Butcher matrix for the modified Euler method.
 class RungeKutta3
          Butcher matrix for the 3rd order Runge-Kutta method.
 class RungeKutta4
          Butcher matrix for the 4th order Runge-Kutta method.
 class ThreeEights
          Butcher matrix for the 3/8s method.
 

Methods in rkm.butcher that return ButcherMatrix
static ButcherMatrix[] ButcherMatrix.getAvailableMethods()
           
static ButcherMatrix ButcherMatrix.getCustomButcherMatrix(double[][] a, double[] b, double[] c)