原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.polymul.html
校对:(虚位以待)
numpy.
polymul
(a1, a2)[source]找到两个多项式的乘积。
查找从两个输入多项式相乘得到的多项式。每个输入必须是poly1d对象或多项式系数的1D序列,从最高到最低度。
参数: | a1,a2:array_like或poly1d对象
|
---|---|
返回: | out:ndarray或poly1d对象
|
也可以看看
poly1d
poly
, polyadd
, polyder
, polydiv
, polyfit
, polyint
, polysub
, polyval
convolve
例子
>>> np.polymul([1, 2, 3], [9, 5, 1])
array([ 9, 23, 38, 17, 3])
使用poly1d对象:
>>> p1 = np.poly1d([1, 2, 3])
>>> p2 = np.poly1d([9, 5, 1])
>>> print(p1)
2
1 x + 2 x + 3
>>> print(p2)
2
9 x + 5 x + 1
>>> print(np.polymul(p1, p2))
4 3 2
9 x + 23 x + 38 x + 17 x + 3