Uses of Interface
org.hipparchus.ode.sampling.ODEStepHandler
-
Packages that use ODEStepHandler Package Description org.hipparchus.migration.ode This package provides migration classes from Apache Commons Math to Hipparchus.org.hipparchus.migration.ode.sampling This package provides migration classes from Apache Commons Math to Hipparchus.org.hipparchus.ode This package provides classes to solve Ordinary Differential Equations problems.org.hipparchus.ode.sampling This package provides classes to handle sampling steps during Ordinary Differential Equations integration. -
-
Uses of ODEStepHandler in org.hipparchus.migration.ode
Classes in org.hipparchus.migration.ode that implement ODEStepHandler Modifier and Type Class Description class
ContinuousOutputModel
Deprecated.as of 1.0, replaced withDenseOutputModel
-
Uses of ODEStepHandler in org.hipparchus.migration.ode.sampling
Subinterfaces of ODEStepHandler in org.hipparchus.migration.ode.sampling Modifier and Type Interface Description interface
StepHandler
Deprecated.as of 1.0, replaced withODEStepHandler
Classes in org.hipparchus.migration.ode.sampling that implement ODEStepHandler Modifier and Type Class Description class
DummyStepHandler
Deprecated.as of 1.0, this class is not used anymore -
Uses of ODEStepHandler in org.hipparchus.ode
Classes in org.hipparchus.ode that implement ODEStepHandler Modifier and Type Class Description class
DenseOutputModel
This class stores all information provided by an ODE integrator during the integration process and build a continuous model of the solution from this.Methods in org.hipparchus.ode that return types with arguments of type ODEStepHandler Modifier and Type Method Description Collection<ODEStepHandler>
AbstractIntegrator. getStepHandlers()
Get all the step handlers that have been added to the integrator.Collection<ODEStepHandler>
ODEIntegrator. getStepHandlers()
Get all the step handlers that have been added to the integrator.Methods in org.hipparchus.ode with parameters of type ODEStepHandler Modifier and Type Method Description void
AbstractIntegrator. addStepHandler(ODEStepHandler handler)
Add a step handler to this integrator.void
ODEIntegrator. addStepHandler(ODEStepHandler handler)
Add a step handler to this integrator. -
Uses of ODEStepHandler in org.hipparchus.ode.sampling
Classes in org.hipparchus.ode.sampling that implement ODEStepHandler Modifier and Type Class Description class
StepNormalizer
This class wraps an object implementingODEFixedStepHandler
into aODEStepHandler
.
-