Python Numpy np.hermex()方法
在np.hermex()方法的帮助下,我们可以通过使用np.hermex()方法得到hermiteE系列中具有数组([0, 1])值的过滤器。
语法: np.hermex
返回:返回数组的过滤器([0, 1])
例子#1 :
在这个例子中,我们可以看到,通过使用np.hermex()方法,我们能够在hermiteE系列中得到一个数组([0, 1])的过滤器,通过使用这个方法。
# import numpy and hermex
import numpy as np
from numpy.polynomial.hermite_e import hermex
# using np.hermex() method
for i in range(5):
gfg = hermex + [i, i + 1]
print(gfg)
输出 :
[0 2]
[1 3]
[2 4]
[3 5]
[4 6]
例子#2 :
# import numpy and hermex
import numpy as np
from numpy.polynomial.hermite_e import hermex
# using np.hermex() method
for i in range(5):
gfg = hermex + [i-1, i + 1]
print(gfg)
输出 :
[-1 2]
[0 3]
[1 4]
[2 5]
[3 6]