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

bundles / numpy latest / numpy / polynomial / laguerre / lagmulx

function

numpy.polynomial.laguerre:lagmulx

source: build-install/usr/lib/python3.14/site-packages/numpy/polynomial/laguerre.py :387

Signature

def   lagmulx ( c )

Summary

Multiply a Laguerre series by x.

Extended Summary

Multiply the Laguerre series c by x, where x is the independent variable.

Parameters

c : array_like

1-D array of Laguerre series coefficients ordered from low to high.

Returns

out : ndarray

Array representing the result of the multiplication.

Notes

The multiplication uses the recursion relationship for Laguerre polynomials in the form

Examples

from numpy.polynomial.laguerre import lagmulx
lagmulx([1, 2, 3])

See also

lagadd
lagdiv
lagmul
lagpow
lagsub

Aliases

  • numpy.polynomial.laguerre.lagmulx