Python Numpy np.chebpow()方法
在np.chebpow()方法的帮助下,我们可以通过使用np.chebpow()方法得到切比雪夫级数的功率。
语法: np.chebpow(s1, power)
返回:在给系列供电后返回一个数组。
例子#1 :
在这个例子中我们可以看到,通过使用np.chebpow()方法,我们能够用这个方法得到切比雪夫级数的幂。
# import numpy
import numpy as np
from numpy.polynomial import chebyshev as C
s1 = (4, 6, 8)
# using np.chebpow() method
gfg = C.chebpow(s1, 5)
print(gfg)
输出 :
[224664. 429180. 381240. 305790. 227400. 151206. 91560. 47040. 21760.
7680. 2048.]
例子#2 :
# import numpy
import numpy as np
from numpy.polynomial import chebyshev as C
s1 = (3, 5, 7, 2, 4, 6)
# using np.chebpow() method
gfg = C.chebpow(s1, 2)
print(gfg)
输出 :
[ 74. 111. 104.5 109. 88.5 70. 60. 50. 20. 24. 18. ]