Function peroxide::numerical::integral::gauss_kronrod_quadrature

source ·
pub fn gauss_kronrod_quadrature<F, T, S>(
    f: F,
    (a, b): (T, S),
    method: Integral,
) -> f64
where F: Fn(f64) -> f64 + Copy, T: Into<f64>, S: Into<f64>,
Expand description

Gauss Kronrod Quadrature

§Type

  • f, (a,b), method -> f64
    • f: Numerical function (Fn(f64) -> f64 + Copy)
    • (a,b): Interval of integration
    • method: Integration method
      • G7K15(tol)

§Reference