pub fn gauss_kronrod_quadrature<F, T, S>(
    f: F,
    (a, b): (T, S),
    method: Integral
) -> f64where
    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