You are viewing an older version (2.4.3). Go to latest (2.4.4)
{ } Raw JSON

bundles / numpy 2.4.3 / numpy / polynomial / hermite / hermmulx

function

numpy.polynomial.hermite:hermmulx

source: /numpy/polynomial/hermite.py :392

Signature

def   hermmulx ( 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_like

1-D array of Hermite series coefficients ordered from low to high.

Returns

out : ndarray

Array representing the result of the multiplication.

Notes

The multiplication uses the recursion relationship for Hermite polynomials in the form

Examples

from numpy.polynomial.hermite import hermmulx
hermmulx([1, 2, 3])

See also

hermadd
hermdiv
hermmul
hermpow
hermsub

Aliases

  • numpy.polynomial.hermite.hermmulx