[][src]Trait gkquad::prelude::Integrand2

pub trait Integrand2 {
    fn apply(&mut self, x: Point2) -> f64;
}

The function that is to be integrated

Required methods

fn apply(&mut self, x: Point2) -> f64

apply function to explanatory variable x

Loading content...

Implementors

impl<F: FnMut(f64, f64) -> f64> Integrand2 for F[src]

Loading content...