numpy.polynomial.hermite
New in version 1.6.0.
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.
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.
hermroots(c)
hermroots
Compute the roots of a Hermite series.
hermfromroots(roots)
hermfromroots
Generate a Hermite series with given roots.
hermfit(x, y, deg[, rcond, full, w])
hermfit
Least squares fit of Hermite series to data.
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
hermder(c[, m, scl, axis])
hermder
Differentiate a Hermite series.
hermint(c[, m, k, lbnd, scl, axis])
hermint
Integrate a Hermite series.
hermadd(c1, c2)
hermadd
Add one Hermite series to another.
hermsub(c1, c2)
hermsub
Subtract one Hermite series from another.
hermmul(c1, c2)
hermmul
Multiply one Hermite series by another.
hermmulx(c)
hermmulx
Multiply a Hermite series by x.
hermdiv(c1, c2)
hermdiv
Divide one Hermite series by another.
hermpow(c, pow[, maxpower])
hermpow
Raise a Hermite series to a power.
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.
hermdomain
hermzero
hermone
hermx
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.