Python Numpy np.hermmulx()方法

Python Numpy np.hermmulx()方法

在np.hermmulx()方法的帮助下,我们可以通过np.hermmulx()方法得到蛭子数列与x的乘法,其中x是一个独立变量。

语法: np.hermmulx(series)
返回:返回乘法后的系列系数。

例子#1 :
在这个例子中,我们可以看到,通过使用np.hermmulx()方法,我们能够得到用自变量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)

输出 :

[7. 19. 30.5 44. 4.5 5.]

例子#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)

输出 :

[2. 6.5 1. 1.5]

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程