bundles / numpy latest / numpy / polynomial / hermite_e / HermiteE
ABCMeta
numpy.polynomial.hermite_e:HermiteE
source: build-install/usr/lib/python3.14/site-packages/numpy/polynomial/hermite_e.py :1597
Signature
def HermiteE ( coef , domain = None , window = None , symbol = x ) Summary
A HermiteE series class.
Extended Summary
The HermiteE class provides the standard Python numerical methods '+', '-', '', '//', '%', 'divmod', '*', and '()' as well as the attributes and methods listed below.
Parameters
coef: array_likeHermiteE coefficients in order of increasing degree, i.e,
(1, 2, 3)gives1*He_0(x) + 2*He_1(X) + 3*He_2(x).domain: (2,) array_like, optionalDomain to use. The interval
[domain[0], domain[1]]is mapped to the interval[window[0], window[1]]by shifting and scaling. The default value is [-1., 1.].window: (2,) array_like, optionalWindow, see
domainfor its use. The default value is [-1., 1.].symbol: str, optionalSymbol used to represent the independent variable in string representations of the polynomial expression, e.g. for printing. The symbol must be a valid Python identifier. Default value is 'x'.
Aliases
-
numpy.polynomial.HermiteE