当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Numpy np.hermemulx()用法及代码示例


借助np.hermemulx()方法,我们可以通过使用获得自变量x的hermiteE系列的乘法np.hermemulx()方法。

用法: np.hermemulx(series)
返回: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.]



相关用法


注:本文由纯净天空筛选整理自Jitender_1998大神的英文原创作品 Python | Numpy np.hermemulx() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。