Class AbstractFieldStepInterpolator<T extends RealFieldElement<T>>

java.lang.Object
org.apache.commons.math3.ode.sampling.AbstractFieldStepInterpolator<T>
Type Parameters:
T - the type of the field elements
All Implemented Interfaces:
FieldStepInterpolator<T>

public abstract class AbstractFieldStepInterpolator<T extends RealFieldElement<T>> extends Object implements FieldStepInterpolator<T>
This abstract class represents an interpolator over the last step during an ODE integration.

The various ODE integrators provide objects extending this class to the step handlers. The handlers can use these objects to retrieve the state vector at intermediate times between the previous and the current grid points (dense output).

Since:
3.6
See Also: