📜  Python| Numpy np.hermmul() 方法

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

Python| Numpy np.hermmul() 方法

np.hermmul()方法的帮助下,我们可以使用np.hermmul()方法得到两个 Hermite 级数的乘法。

示例 #1:
在这个例子中我们可以看到,通过使用np.hermmul()方法,我们可以通过使用这个方法得到两个 Hermite 级数相乘后的级数系数。

# import numpy and hermmul
import numpy as np
from numpy.polynomial.hermite import hermmul
  
series1 = np.array([1, 2, 3, 4, 5])
series2 = np.array([6, 7, 8, 9, 10])
  
# using np.hermmul() method
gfg = hermmul(series1, series2)
  
print(gfg)

输出 :

示例 #2:

# import numpy and hermmul
import numpy as np
from numpy.polynomial.hermite import hermmul
  
series1 = np.array([1, 2, 3])
series2 = np.array([1, 2, 3])
  
# using np.hermmul() method
gfg = hermmul(series1, series2)
  
print(gfg)

输出 :