numpy.polynomial.hermite_e
New in version 1.6.0.
This module provides a number of objects (mostly functions) useful for dealing with HermiteE series, including a HermiteE class that encapsulates the usual arithmetic operations. (General information on how this module represents and works with such polynomials is in the docstring for its “parent” sub-package, numpy.polynomial).
HermiteE
numpy.polynomial
HermiteE(coef[, domain, window])
An HermiteE series class.
hermeval(x, c[, tensor])
hermeval
Evaluate an HermiteE series at points x.
hermeval2d(x, y, c)
hermeval2d
Evaluate a 2-D HermiteE series at points (x, y).
hermeval3d(x, y, z, c)
hermeval3d
Evaluate a 3-D Hermite_e series at points (x, y, z).
hermegrid2d(x, y, c)
hermegrid2d
Evaluate a 2-D HermiteE series on the Cartesian product of x and y.
hermegrid3d(x, y, z, c)
hermegrid3d
Evaluate a 3-D HermiteE series on the Cartesian product of x, y, and z.
hermeroots(c)
hermeroots
Compute the roots of a HermiteE series.
hermefromroots(roots)
hermefromroots
Generate a HermiteE series with given roots.
hermefit(x, y, deg[, rcond, full, w])
hermefit
Least squares fit of Hermite series to data.
hermevander(x, deg)
hermevander
Pseudo-Vandermonde matrix of given degree.
hermevander2d(x, y, deg)
hermevander2d
Pseudo-Vandermonde matrix of given degrees.
hermevander3d(x, y, z, deg)
hermevander3d
hermeder(c[, m, scl, axis])
hermeder
Differentiate a Hermite_e series.
hermeint(c[, m, k, lbnd, scl, axis])
hermeint
Integrate a Hermite_e series.
hermeadd(c1, c2)
hermeadd
Add one Hermite series to another.
hermesub(c1, c2)
hermesub
Subtract one Hermite series from another.
hermemul(c1, c2)
hermemul
Multiply one Hermite series by another.
hermemulx(c)
hermemulx
Multiply a Hermite series by x.
hermediv(c1, c2)
hermediv
Divide one Hermite series by another.
hermepow(c, pow[, maxpower])
hermepow
Raise a Hermite series to a power.
hermegauss(deg)
hermegauss
Gauss-HermiteE quadrature.
hermeweight(x)
hermeweight
Weight function of the Hermite_e polynomials.
hermecompanion(c)
hermecompanion
Return the scaled companion matrix of c.
hermedomain
hermezero
hermeone
hermex
hermetrim(c[, tol])
hermetrim
Remove “small” “trailing” coefficients from a polynomial.
hermeline(off, scl)
hermeline
Hermite series whose graph is a straight line.
herme2poly(c)
herme2poly
Convert a Hermite series to a polynomial.
poly2herme(pol)
poly2herme
Convert a polynomial to a Hermite series.