Python Numpy np.chebmulx()方法
在np.chebmulx()方法的帮助下,我们可以通过使用np.chebmulx()方法得到切比雪夫级数与自变量x的乘法结果。
语法: np.chebmulx(s1)
返回:与x相乘后返回一个数组。
例子#1 :
在这个例子中我们可以看到,通过使用np.chebmulx()方法,我们能够用这个方法得到切比雪夫级数与独立变量x的乘法。
# import numpy
import numpy as np
from numpy.polynomial import chebyshev as C
s1 = (4, 6, 8)
# using np.chebmulx() method
gfg = C.chebmulx(s1)
print(gfg)
输出 :
[3. 8. 3. 4.]
例子#2 :
# import numpy
import numpy as np
from numpy.polynomial import chebyshev as C
s1 = (4, 6, 8, 1, 3, 5)
# using np.chebmulx() method
gfg = C.chebmulx(s1)
print(gfg)
输出 :
[3. 8. 3.5 5.5 3. 1.5 2.5]