📜  Python| Numpy np.hermmulx() 方法

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

Python| Numpy np.hermmulx() 方法

借助np.hermmulx()方法,我们可以使用np.hermmulx()方法得到 Hermite 级数与 x 的乘积,其中 x 是一个自变量。

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

# import numpy and hermmulx
import numpy as np
from numpy.polynomial.hermite import hermmulx
  
series = np.array([6, 7, 8, 9, 10])
  
# using np.hermmulx() method
gfg = hermmulx(series)
  
print(gfg)

输出 :

示例 #2:

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

输出 :