numpy.polynomial.chebyshev.chebmulx# polynomial.chebyshev.chebmulx(c)[源代码]# 将一个切比雪夫级数乘以 x. 将多项式 c 乘以 x,其中 x 是自变量. 参数: carray_like从低到高排序的切比雪夫级数系数的1-D数组. 返回: outndarray表示乘法结果的数组. 参见 chebadd, chebsub, chebmul, chebdiv, chebpow 备注 在 1.5.0 版本加入. 示例 >>> from numpy.polynomial import chebyshev as C >>> C.chebmulx([1,2,3]) array([1. , 2.5, 1. , 1.5])