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.hermite¶
- scipy.special.hermite(n, monic=False)[source]¶
Physicist’s Hermite polynomial.
Defined by
Hn(x)=(−1)nex2dndxne−x2;Hn is a polynomial of degree n.
Parameters: n : int
Degree of the polynomial.
monic : bool, optional
If True, scale the leading coefficient to be 1. Default is False.
Returns: H : orthopoly1d
Hermite polynomial.
Notes
The polynomials Hn are orthogonal over (−∞,∞) with weight function e−x2.