scipy.special.eval_hermite¶
-
scipy.special.eval_hermite(n, x, out=None) = <ufunc 'eval_hermite'>¶ Evaluate physicist’s Hermite polynomial at a point.
Defined by
\[H_n(x) = (-1)^n e^{x^2} \frac{d^n}{dx^n} e^{-x^2};\]\(H_n\) is a polynomial of degree \(n\).
- Parameters
- narray_like
Degree of the polynomial
- xarray_like
Points at which to evaluate the Hermite polynomial
- Returns
- Hndarray
Values of the Hermite polynomial
See also
roots_hermiteroots and quadrature weights of physicist’s Hermite polynomials
hermitephysicist’s Hermite polynomial object
numpy.polynomial.hermite.HermitePhysicist’s Hermite series
eval_hermitenormevaluate Probabilist’s Hermite polynomials
