📜  Python| Numpy np.hermemulx() 方法

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

Python| Numpy np.hermemulx() 方法

借助np.hermemulx()方法,我们可以使用np.hermemulx()方法得到 hermiteE 级数与自变量 x 的乘积。

示例 #1:
在这个例子中我们可以看到,通过使用np.hermemulx()方法,我们可以通过使用这种方法得到 hermiteE 级数与自变量 x 的乘积。

# import numpy and hermemulx
import numpy as np
from numpy.polynomial.hermite_e import hermemulx
  
series = np.array([1, 2, 3, 4])
  
# using np.hermemulx() method
gfg = hermemulx(series)
  
print(gfg)

输出 :

示例 #2:

# import numpy and hermemulx
import numpy as np
from numpy.polynomial.hermite_e import hermemulx
  
series = np.array([11, 22, 33, 44])
  
# using np.hermemulx() method
gfg = hermemulx(series)
  
print(gfg)

输出 :