This is documentation for an old release of SciPy (version 0.19.1). Read this page in the documentation of the latest stable release (version 1.15.1).
scipy.special.hermitenorm¶
-
scipy.special.
hermitenorm
(n, monic=False)[source]¶ Normalized (probabilist’s) Hermite polynomial.
Defined by
Hen(x)=(−1)nex2/2dndxne−x2/2;Hen 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: He : orthopoly1d
Hermite polynomial.
Notes
The polynomials Hen are orthogonal over (−∞,∞) with weight function e−x2/2.