Interface ABMPredictorCorrector
-
- All Known Implementing Classes:
ABMPredictorCorrector1,ABMPredictorCorrector2,ABMPredictorCorrector3,ABMPredictorCorrector4,ABMPredictorCorrector5
public interface ABMPredictorCorrectorThe Adams-Bashforth predictor and the Adams-Moulton corrector pair.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Vectorcorrect(DerivativeFunction dy, double h, double[] x, Vector[] y)intorder()Get the order of this predictor-corrector pair.Vectorpredict(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)
-
-