借助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.]
相关用法
- Python Numpy np.fft()用法及代码示例
- Python numpy.ma.ids()用法及代码示例
- Python Numpy np.hermcompanion()用法及代码示例
- Python Numpy np.logseries()用法及代码示例
- Python Numpy np.lognormal()用法及代码示例
- Python Numpy np.negative_binomial()用法及代码示例
- Python Numpy np.kron()用法及代码示例
- Python Numpy np.hermmul()用法及代码示例
- Python Numpy np.hermdiv()用法及代码示例
- Python Numpy np.legadd()用法及代码示例
- Python Numpy np.mapparms()用法及代码示例
- Python Numpy np.leggauss()用法及代码示例
- Python Numpy np.hermmulx()用法及代码示例
- Python Numpy np.lagtrim()用法及代码示例
- Python Numpy np.mask_or()用法及代码示例
注:本文由纯净天空筛选整理自Jitender_1998大神的英文原创作品 Python | Numpy np.hermemulx() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。