bundles / numpy 2.4.3 / numpy / polynomial / chebyshev / chebmulx
function
numpy.polynomial.chebyshev:chebmulx
Signature
def chebmulx ( c ) Summary
Multiply a Chebyshev series by x.
Extended Summary
Multiply the polynomial c by x, where x is the independent variable.
Parameters
c: array_like1-D array of Chebyshev series coefficients ordered from low to high.
Returns
out: ndarrayArray representing the result of the multiplication.
Examples
from numpy.polynomial import chebyshev as C C.chebmulx([1,2,3])✓
See also
Aliases
-
numpy.polynomial.chebyshev.chebmulx