📜  Python| Numpy np.hermemul() 方法

📅  最后修改于: 2022-05-13 01:55:37.277000             🧑  作者: Mango

Python| Numpy np.hermemul() 方法

借助np.hermemul()方法,我们可以使用np.hermemul()方法得到两个hermiteE级数的乘积。

示例 #1:
在这个例子中我们可以看到,通过使用np.hermemul()方法,我们可以通过这个方法得到两个 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)

输出 :

示例 #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)

输出 :