bundles / numpy 2.5.0.dev0+git20251130.2de293a / numpy / polynomial / hermite_e / hermemulx
function
numpy.polynomial.hermite_e:hermemulx
source: build-install/usr/lib/python3.14/site-packages/numpy/polynomial/hermite_e.py :392
Signature
def hermemulx ( c ) Summary
Multiply a Hermite series by x.
Extended Summary
Multiply the Hermite series c by x, where x is the independent variable.
Parameters
c: array_like1-D array of Hermite series coefficients ordered from low to high.
Returns
out: ndarrayArray representing the result of the multiplication.
Notes
The multiplication uses the recursion relationship for Hermite polynomials in the form
Examples
from numpy.polynomial.hermite_e import hermemulx
✓hermemulx([1, 2, 3])
✗See also
Aliases
-
numpy.polynomial.hermite_e.hermemulx