Uses of Interface
dev.nm.analysis.differentialequation.ode.ivp.solver.rungekutta.RungeKuttaStepper
-
Packages that use RungeKuttaStepper Package Description dev.nm.analysis.differentialequation.ode.ivp.solver.rungekutta -
-
Uses of RungeKuttaStepper in dev.nm.analysis.differentialequation.ode.ivp.solver.rungekutta
Classes in dev.nm.analysis.differentialequation.ode.ivp.solver.rungekutta that implement RungeKuttaStepper Modifier and Type Class Description classRungeKutta1This is the first-order Runge-Kutta formula, which is the same as the Euler method.classRungeKutta10This is the tenth-order Runge-Kutta formula.classRungeKutta2This is the second-order Runge-Kutta formula, which can be implemented efficiently with a three-step algorithm.classRungeKutta3This is the third-order Runge-Kutta formula.classRungeKutta4This is the fourth-order Runge-Kutta formula.classRungeKutta5This is the fifth-order Runge-Kutta formula.classRungeKutta6This is the sixth-order Runge-Kutta formula.classRungeKutta7This is the seventh-order Runge-Kutta formula.classRungeKutta8This is the eighth-order Runge-Kutta formula.Constructors in dev.nm.analysis.differentialequation.ode.ivp.solver.rungekutta with parameters of type RungeKuttaStepper Constructor Description RungeKutta(RungeKuttaStepper stepper, double h)Constructs a Runge-Kutta algorithm with the given integrator and the constant step size.RungeKutta(RungeKuttaStepper stepper, int N)Constructs a Runge-Kutta algorithm with the given integrator and the constant number of steps.RungeKuttaIntegrator(RungeKuttaStepper stepper)
-