numpy.polynomial.chebyshev.chebmulx#

polynomial.chebyshev.chebmulx(c)[原始碼]#

將切比雪夫級數乘以 x。

將多項式 c 乘以 x,其中 x 是自變數。

參數:
carray_like

切比雪夫級數係數的 1-D 陣列,從低階到高階排序。

返回:
outndarray

表示乘法結果的陣列。

範例

>>> from numpy.polynomial import chebyshev as C
>>> C.chebmulx([1,2,3])
array([1. , 2.5, 1. , 1.5])