Python| Numpy np.chebpow() 方法
借助np.chebpow()
方法,我们可以通过使用np.chebpow()
方法获得切比雪夫级数的幂。
Syntax : np.chebpow(s1, power)
Return : Return an array after power the series.
示例 #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. ]