numpy.polynomial.chebyshev.chebmulx# polynomial.chebyshev.chebmulx(c)[原始碼]# 將切比雪夫級數乘以 x。 將多項式 c 乘以 x,其中 x 是自變數。 參數: carray_like切比雪夫級數係數的 1-D 陣列,從低階到高階排序。 返回: outndarray表示乘法結果的陣列。 參見 chebadd, chebsub, chebmul, chebdiv, chebpow 範例 >>> from numpy.polynomial import chebyshev as C >>> C.chebmulx([1,2,3]) array([1. , 2.5, 1. , 1.5])