bundles / numpy 2.5.0.dev0+git20251130.2de293a / numpy / polynomial / hermite / hermadd
function
numpy.polynomial.hermite:hermadd
source: build-install/usr/lib/python3.14/site-packages/numpy/polynomial/hermite.py :312
Signature
def hermadd ( c1 , c2 ) Summary
Add one Hermite series to another.
Extended Summary
Returns the sum of two Hermite series c1 + c2. The arguments are sequences of coefficients ordered from lowest order term to highest, i.e., [1,2,3] represents the series P_0 + 2*P_1 + 3*P_2.
Parameters
c1, c2: array_like1-D arrays of Hermite series coefficients ordered from low to high.
Returns
out: ndarrayArray representing the Hermite series of their sum.
Notes
Unlike multiplication, division, etc., the sum of two Hermite series is a Hermite series (without having to "reproject" the result onto the basis set) so addition, just like that of "standard" polynomials, is simply "component-wise."
Examples
from numpy.polynomial.hermite import hermadd hermadd([1, 2, 3], [1, 2, 3, 4])✓
See also
Aliases
-
numpy.polynomial.Hermite._add -
numpy.polynomial.hermite.hermadd