numpy.polynomial.polynomial.polymulx(c)
The numpy.polymulx
function multiplies the polynomial c
with a value x
which is the independent variable.
Arguments | Type | Description |
---|---|---|
c | array_like or poly1d object | The input polynomials to be multiplied |
The following table shows the return value of the function:
Type | Description | |
---|---|---|
Return Value | ndarray or poly1d object | The polynomial resulting from the multiplication of the inputs. If either inputs is a poly1d object, then the output is also a poly1d object. Otherwise, it is a 1D array of polynomial coefficients from highest to lowest degree. |
Let’s dive into some examples to show how the function is used in practice:
Examples
import numpy as np import numpy.polynomial.polynomial as poly print(poly.polymulx([0]) == [0]) print(poly.polymulx([1]) == [0, 1]) for i in range(1, 5): ser = [0]*i + [1] tgt = [0]*(i + 1) + [1] print(poly.polymulx(ser) == tgt) ''' [ True] [ True True] [ True True True] [ True True True True] [ True True True True True] [ True True True True True True] '''
This function is inspired from this Github repository.
Any master coder has a “hands-on” mentality with a bias towards action. Try it yourself—play with the function in the following interactive code shell:
Exercise: Change the parameters of your polynomials and print them without the comparisons. Do you understand where they come from?
Master NumPy—and become a data science pro:

Related Video

While working as a researcher in distributed systems, Dr. Christian Mayer found his love for teaching computer science students.
To help students reach higher levels of Python success, he founded the programming education website Finxter.com that has taught exponential skills to millions of coders worldwide. He’s the author of the best-selling programming books Python One-Liners (NoStarch 2020), The Art of Clean Code (NoStarch 2022), and The Book of Dash (NoStarch 2022). Chris also coauthored the Coffee Break Python series of self-published books. He’s a computer science enthusiast, freelancer, and owner of one of the top 10 largest Python blogs worldwide.
His passions are writing, reading, and coding. But his greatest passion is to serve aspiring coders through Finxter and help them to boost their skills. You can join his free email academy here.