Python Numpy np.hermemul()方法
在np.hermul()方法的帮助下,我们可以通过np.hermul()方法得到两个hermiteE系列的乘法。
语法: np.hermemul(series1, series2)
返回:返回两个hermiteE系列的乘法。
例子#1 :
在这个例子中,我们可以看到,通过使用np.hermul()方法,我们能够得到两个hermiteE系列的乘法。
# import numpy and hermemul
import numpy as np
from numpy.polynomial.hermite_e import hermemul
series1 = np.array([1, 2, 3, 4])
series2 = np.array([10, 11, 12, 13])
# using np.hermemul() method
gfg = hermemul(series1, series2)
print(gfg)
输出 :
[416. 667. 1354. 632. 574. 87. 52.]
例子#2 :
# import numpy and hermemul
import numpy as np
from numpy.polynomial.hermite_e import hermemul
series1 = np.array([11, 22, 33, 44])
series2 = np.array([10, 11, 12, 13])
# using np.hermemul() method
gfg = hermemul(series1, series2)
print(gfg)
输出 :
[4576. 7337. 14894. 6952. 6314. 957. 572.]