Interface ABMPredictorCorrector
-
- All Known Implementing Classes:
ABMPredictorCorrector1
,ABMPredictorCorrector2
,ABMPredictorCorrector3
,ABMPredictorCorrector4
,ABMPredictorCorrector5
public interface ABMPredictorCorrector
The Adams-Bashforth predictor and the Adams-Moulton corrector pair.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Vector
correct(DerivativeFunction dy, double h, double[] x, Vector[] y)
int
order()
Get the order of this predictor-corrector pair.Vector
predict(DerivativeFunction dy, double h, double[] x, Vector[] y)
-
-
-
Method Detail
-
order
int order()
Get the order of this predictor-corrector pair.- Returns:
- order
-
predict
Vector predict(DerivativeFunction dy, double h, double[] x, Vector[] y)
-
correct
Vector correct(DerivativeFunction dy, double h, double[] x, Vector[] y)
-
-