This is a pre-release version (latest). Go to latest (2.4.4)
{ } Raw JSON

bundles / numpy latest / numpy / polynomial / laguerre / lagline

function

numpy.polynomial.laguerre:lagline

source: build-install/usr/lib/python3.14/site-packages/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