[][src]Struct gauss_quad::hermite::GaussHermite

pub struct GaussHermite {
    pub nodes: Vec<f64>,
    pub weights: Vec<f64>,
}

Fields

nodes: Vec<f64>weights: Vec<f64>

Methods

impl GaussHermite[src]

pub fn init(deg: usize) -> GaussHermite[src]

pub fn nodes_and_weights(deg: usize) -> (Vec<f64>, Vec<f64>)[src]

Apply Golub-Welsch algorithm to determine Gauss-Hermite nodes & weights construct companion matrix A for the Hermite Polynomial using the relation: 1/2 H_{n+1} + n H_{n-1} = x H_n A similar matrix that is symmetrized is constructed by D A D^{-1} Resulting in a symmetric tridiagonal matrix with 0 on the diagonal & sqrt(n/2) on the off-diagonal root & weight finding are equivalent to eigenvalue problem see Gil, Segura, Temme - Numerical Methods for Special Functions

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

Perform quadrature of integrand using given nodes x and weights w

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>,