[][src]Function peroxide::numerical::runge_kutta::one_step_rk

pub fn one_step_rk<F>(t: f64, xs: Vec<f64>, f: F, step: f64) -> Vec<f64> where
    F: Fn(f64, Vec<f64>) -> Vec<f64> + Copy