Uses of Interface
org.apache.commons.math3.ode.sampling.StepHandler
Packages that use StepHandler
Package
Description
This package provides classes to solve Ordinary Differential Equations problems.
This package provides classes to solve non-stiff Ordinary Differential Equations problems.
This package provides classes to handle sampling steps during
Ordinary Differential Equations integration.
-
Uses of StepHandler in org.apache.commons.math3.ode
Classes in org.apache.commons.math3.ode that implement StepHandlerModifier and TypeClassDescriptionclass
This class stores all information provided by an ODE integrator during the integration process and build a continuous model of the solution from this.Fields in org.apache.commons.math3.ode with type parameters of type StepHandlerModifier and TypeFieldDescriptionprotected Collection
<StepHandler> AbstractIntegrator.stepHandlers
Step handler.Methods in org.apache.commons.math3.ode that return types with arguments of type StepHandlerModifier and TypeMethodDescriptionAbstractIntegrator.getStepHandlers()
Get all the step handlers that have been added to the integrator.ODEIntegrator.getStepHandlers()
Get all the step handlers that have been added to the integrator.Methods in org.apache.commons.math3.ode with parameters of type StepHandlerModifier and TypeMethodDescriptionvoid
AbstractIntegrator.addStepHandler
(StepHandler handler) Add a step handler to this integrator.void
ODEIntegrator.addStepHandler
(StepHandler handler) Add a step handler to this integrator. -
Uses of StepHandler in org.apache.commons.math3.ode.nonstiff
Methods in org.apache.commons.math3.ode.nonstiff with parameters of type StepHandlerModifier and TypeMethodDescriptionvoid
GraggBulirschStoerIntegrator.addStepHandler
(StepHandler handler) Add a step handler to this integrator. -
Uses of StepHandler in org.apache.commons.math3.ode.sampling
Classes in org.apache.commons.math3.ode.sampling that implement StepHandlerModifier and TypeClassDescriptionclass
This class is a step handler that does nothing.class
This class wraps an object implementingFixedStepHandler
into aStepHandler
.