numpy.polynomial.laguerre
New in version 1.6.0.
This module provides a number of objects (mostly functions) useful for dealing with Laguerre series, including a Laguerre 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).
Laguerre
numpy.polynomial
Laguerre(coef[, domain, window])
A Laguerre series class.
lagval(x, c[, tensor])
lagval
Evaluate a Laguerre series at points x.
lagval2d(x, y, c)
lagval2d
Evaluate a 2-D Laguerre series at points (x, y).
lagval3d(x, y, z, c)
lagval3d
Evaluate a 3-D Laguerre series at points (x, y, z).
laggrid2d(x, y, c)
laggrid2d
Evaluate a 2-D Laguerre series on the Cartesian product of x and y.
laggrid3d(x, y, z, c)
laggrid3d
Evaluate a 3-D Laguerre series on the Cartesian product of x, y, and z.
lagroots(c)
lagroots
Compute the roots of a Laguerre series.
lagfromroots(roots)
lagfromroots
Generate a Laguerre series with given roots.
lagfit(x, y, deg[, rcond, full, w])
lagfit
Least squares fit of Laguerre series to data.
lagvander(x, deg)
lagvander
Pseudo-Vandermonde matrix of given degree.
lagvander2d(x, y, deg)
lagvander2d
Pseudo-Vandermonde matrix of given degrees.
lagvander3d(x, y, z, deg)
lagvander3d
lagder(c[, m, scl, axis])
lagder
Differentiate a Laguerre series.
lagint(c[, m, k, lbnd, scl, axis])
lagint
Integrate a Laguerre series.
lagadd(c1, c2)
lagadd
Add one Laguerre series to another.
lagsub(c1, c2)
lagsub
Subtract one Laguerre series from another.
lagmul(c1, c2)
lagmul
Multiply one Laguerre series by another.
lagmulx(c)
lagmulx
Multiply a Laguerre series by x.
lagdiv(c1, c2)
lagdiv
Divide one Laguerre series by another.
lagpow(c, pow[, maxpower])
lagpow
Raise a Laguerre series to a power.
laggauss(deg)
laggauss
Gauss-Laguerre quadrature.
lagweight(x)
lagweight
Weight function of the Laguerre polynomials.
lagcompanion(c)
lagcompanion
Return the companion matrix of c.
lagdomain
lagzero
lagone
lagx
lagtrim(c[, tol])
lagtrim
Remove “small” “trailing” coefficients from a polynomial.
lagline(off, scl)
lagline
Laguerre series whose graph is a straight line.
lag2poly(c)
lag2poly
Convert a Laguerre series to a polynomial.
poly2lag(pol)
poly2lag
Convert a polynomial to a Laguerre series.