Skip to main content

adams_bashforth_4

Function adams_bashforth_4 

Source
pub fn adams_bashforth_4(
    f: impl Fn(f64, &[f64]) -> Vec<f64>,
    t_span: (f64, f64),
    y0: &[f64],
    dt: f64,
) -> OdeResult