Package | Description |
---|---|
org.apache.commons.math3.ode |
This package provides classes to solve Ordinary Differential Equations problems.
|
org.apache.commons.math3.ode.nonstiff |
This package provides classes to solve non-stiff Ordinary Differential Equations problems.
|
org.apache.commons.math3.ode.sampling |
This package provides classes to handle sampling steps during
Ordinary Differential Equations integration.
|
Modifier and Type | Class and Description |
---|---|
class |
ContinuousOutputModel
This class stores all information provided by an ODE integrator
during the integration process and build a continuous model of the
solution from this.
|
Modifier and Type | Field and Description |
---|---|
protected Collection<StepHandler> |
AbstractIntegrator.stepHandlers
Step handler.
|
Modifier and Type | Method and Description |
---|---|
Collection<StepHandler> |
ODEIntegrator.getStepHandlers()
Get all the step handlers that have been added to the integrator.
|
Collection<StepHandler> |
AbstractIntegrator.getStepHandlers()
Get all the step handlers that have been added to the integrator.
|
Modifier and Type | Method and Description |
---|---|
void |
ODEIntegrator.addStepHandler(StepHandler handler)
Add a step handler to this integrator.
|
void |
AbstractIntegrator.addStepHandler(StepHandler handler)
Add a step handler to this integrator.
|
Modifier and Type | Method and Description |
---|---|
void |
GraggBulirschStoerIntegrator.addStepHandler(StepHandler handler)
Add a step handler to this integrator.
|
Modifier and Type | Class and Description |
---|---|
class |
DummyStepHandler
This class is a step handler that does nothing.
|
class |
StepNormalizer
This class wraps an object implementing
FixedStepHandler
into a StepHandler . |
Copyright © 2003–2016 The Apache Software Foundation. All rights reserved.