[][src]Trait gauss_quad::gaussian_quadrature::ImproperIntegral

pub trait ImproperIntegral {
    fn integrate<F>(&self, integrand: F) -> f64
    where
        F: Fn(f64) -> f64
; }

Required methods

fn integrate<F>(&self, integrand: F) -> f64 where
    F: Fn(f64) -> f64

Loading content...

Implementors

impl ImproperIntegral for GaussHermite[src]

fn integrate<F>(&self, integrand: F) -> f64 where
    F: Fn(f64) -> f64
[src]

Perform quadrature of integrand using given nodes x and weights w

Loading content...