You are viewing an older version (2.4.3). Go to latest (2.4.4)
{ } Raw JSON

bundles / numpy 2.4.3 / numpy / polynomial / laguerre / lagline

function

numpy.polynomial.laguerre:lagline

source: /numpy/polynomial/laguerre.py :213

Signature

def   lagline ( off scl )

Summary

Laguerre series whose graph is a straight line.

Parameters

off, scl : scalars

The specified line is given by off + scl*x.

Returns

y : ndarray

This module's representation of the Laguerre series for off + scl*x.

Examples

from numpy.polynomial.laguerre import lagline, lagval
lagval(0,lagline(3, 2))
lagval(1,lagline(3, 2))

See also

numpy.polynomial.chebyshev.chebline
numpy.polynomial.hermite.hermline
numpy.polynomial.hermite_e.hermeline
numpy.polynomial.legendre.legline
numpy.polynomial.polynomial.polyline

Aliases

  • numpy.polynomial.Laguerre._line
  • numpy.polynomial.laguerre.lagline