bundles / numpy latest / numpy / polynomial / polynomial / polymulx
function
numpy.polynomial.polynomial:polymulx
source: build-install/usr/lib/python3.14/site-packages/numpy/polynomial/polynomial.py :288
Signature
def polymulx ( c ) Summary
Multiply a polynomial by x.
Extended Summary
Multiply the polynomial c by x, where x is the independent variable.
Parameters
c: array_like1-D array of polynomial coefficients ordered from low to high.
Returns
out: ndarrayArray representing the result of the multiplication.
Examples
from numpy.polynomial import polynomial as P c = (1, 2, 3) P.polymulx(c)✓
See also
Aliases
-
numpy.polynomial.polynomial.polymulx