This is documentation for an old release of NumPy (version 1.7.0). Read this page in the documentation of the latest stable release (version > 1.17).
Laguerre series whose graph is a straight line.
Parameters : | off, scl : scalars
|
---|---|
Returns : | y : ndarray
|
See also
polyline, chebline
Examples
>>> from numpy.polynomial.laguerre import lagline, lagval
>>> lagval(0,lagline(3, 2))
3.0
>>> lagval(1,lagline(3, 2))
5.0