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 TypeClassDescriptionclassThis 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.stepHandlersStep 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 TypeMethodDescriptionvoidAbstractIntegrator.addStepHandler(StepHandler handler) Add a step handler to this integrator.voidODEIntegrator.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 TypeMethodDescriptionvoidGraggBulirschStoerIntegrator.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 TypeClassDescriptionclassThis class is a step handler that does nothing.classThis class wraps an object implementingFixedStepHandlerinto aStepHandler.