New in version 1.6.0.
numpy.polynomial.hermite
This module provides a number of objects (mostly functions) useful for dealing with Hermite series, including a Hermite 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).
Hermite
numpy.polynomial
Hermite(coef[, domain, window])
An Hermite series class.
hermdomain
hermzero
hermone
hermx
hermadd(c1, c2)
hermadd
Add one Hermite series to another.
hermsub(c1, c2)
hermsub
Subtract one Hermite series from another.
hermmulx(c)
hermmulx
Multiply a Hermite series by x.
hermmul(c1, c2)
hermmul
Multiply one Hermite series by another.
hermdiv(c1, c2)
hermdiv
Divide one Hermite series by another.
hermpow(c, pow[, maxpower])
hermpow
Raise a Hermite series to a power.
hermval(x, c[, tensor])
hermval
Evaluate an Hermite series at points x.
hermval2d(x, y, c)
hermval2d
Evaluate a 2-D Hermite series at points (x, y).
hermval3d(x, y, z, c)
hermval3d
Evaluate a 3-D Hermite series at points (x, y, z).
hermgrid2d(x, y, c)
hermgrid2d
Evaluate a 2-D Hermite series on the Cartesian product of x and y.
hermgrid3d(x, y, z, c)
hermgrid3d
Evaluate a 3-D Hermite series on the Cartesian product of x, y, and z.
hermder(c[, m, scl, axis])
hermder
Differentiate a Hermite series.
hermint(c[, m, k, lbnd, scl, axis])
hermint
Integrate a Hermite series.
hermfromroots(roots)
hermfromroots
Generate a Hermite series with given roots.
hermroots(c)
hermroots
Compute the roots of a Hermite series.
hermvander(x, deg)
hermvander
Pseudo-Vandermonde matrix of given degree.
hermvander2d(x, y, deg)
hermvander2d
Pseudo-Vandermonde matrix of given degrees.
hermvander3d(x, y, z, deg)
hermvander3d
hermgauss(deg)
hermgauss
Gauss-Hermite quadrature.
hermweight(x)
hermweight
Weight function of the Hermite polynomials.
hermcompanion(c)
hermcompanion
Return the scaled companion matrix of c.
hermfit(x, y, deg[, rcond, full, w])
hermfit
Least squares fit of Hermite series to data.
hermtrim(c[, tol])
hermtrim
Remove “small” “trailing” coefficients from a polynomial.
hermline(off, scl)
hermline
Hermite series whose graph is a straight line.
herm2poly(c)
herm2poly
Convert a Hermite series to a polynomial.
poly2herm(pol)
poly2herm
Convert a polynomial to a Hermite series.