bundles / numpy 2.4.4 / numpy / polynomial / polynomial / polymulx
function
numpy.polynomial.polynomial:polymulx
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