Python| Numpy np.hermemulx() 方法
借助np.hermemulx()
方法,我们可以使用np.hermemulx()
方法得到 hermiteE 级数与自变量 x 的乘积。
Syntax : np.hermemulx(series)
Return : Return the multiplication of hermiteE series with 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. 7. 14. 3. 4.]
示例 #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)
输出 :
[22. 77. 154. 33. 44.]