numpy.polynomial.chebyshev.chebmulx# polynomial.chebyshev.chebmulx(c)[source]# 将切比雪夫级数乘以 x。 将多项式 c 乘以 x,其中 x 是自变量。 参数: c类数组切比雪夫级数系数的一维数组,从低阶到高阶排列。 返回: 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]) 返回在新标签页打开