Skip to main content

hermite_h

Function hermite_h 

Source
pub fn hermite_h(n: usize, x: f64) -> f64
Expand description

Hermite polynomial H_n(x) (physicists’ convention).

Uses the recurrence: H_{n+1}(x) = 2x H_n(x) − 2n H_{n−1}(x)

§Arguments

  • n - degree (non-negative)
  • x - argument

§Returns

Value of H_n(x).