Python| Numpy np.hermpow() 方法
借助np.hermpow()
方法,我们可以通过使用np.hermpow()
方法获得 Hermite 级数的幂。
Syntax : np.hermpow(series, pow)
Return : Return the coefficient of series after applying power.
示例 #1:
在这个例子中我们可以看到,通过使用np.hermpow()
方法,我们可以通过使用该方法得到 Hermite 级数的幂后级数的系数。
# import numpy and hermpow
import numpy as np
from numpy.polynomial.hermite import hermpow
series = np.array([1, 2, 3, 4, 5])
# using np.hermpow() method
gfg = hermpow(series, 2)
print(gfg)
输出 :
[10449. 8308. 21970. 6228. 8003. 1004. 846. 40. 25.]
示例 #2:
# import numpy and hermpow
import numpy as np
from numpy.polynomial.hermite import hermpow
series = np.array([1, 2, 3])
# using np.hermpow() method
gfg = hermpow(series, 3)
print(gfg)
输出 :
[2257. 2358. 3837. 908. 711. 54. 27.]