numpy.polynomial.chebyshev.chebmulx# polynomial.chebyshev.chebmulx(c)[源代码]# 将切比雪夫级数乘以 x。 将多项式 c 乘以 x,其中 x 是自变量。 参数: carray_like一维数组,包含从低到高的切比雪夫级数系数。 返回: 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])