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

bundles / numpy latest / numpy / polynomial / legendre / legmulx

function

numpy.polynomial.legendre:legmulx

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

Signature

def   legmulx ( c )

Summary

Multiply a Legendre series by x.

Extended Summary

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

Parameters

c : array_like

1-D array of Legendre 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 Legendre polynomials in the form

Examples

from numpy.polynomial import legendre as L
L.legmulx([1,2,3])

See also

legadd
legdiv
legmul
legpow
legsub

Aliases

  • numpy.polynomial.legendre.legmulx