This is documentation for an old release of SciPy (version 0.19.0). Read this page in the documentation of the latest stable release (version 1.15.1).
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
Hn(x)=(−1)nex2dndxne−x2;Hn is a polynomial of degree n.
Parameters: n : array_like
Degree of the polynomial
x : array_like
Points at which to evaluate the Hermite polynomial
Returns: H : ndarray
Values of the Hermite polynomial
See also
- roots_hermite
- roots and quadrature weights of physicist’s Hermite polynomials
- hermite
- physicist’s Hermite polynomial object
- numpy.polynomial.hermite.Hermite
- Physicist’s Hermite series
- eval_hermitenorm
- evaluate Probabilist’s Hermite polynomials