📜  Python| Numpy np.hermline() 方法

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

Python| Numpy np.hermline() 方法

借助np.hermline()方法,我们可以通过使用np.hermline()方法得到 Hermite 系列指定的线。

示例 #1:
在这个例子中我们可以看到,通过使用np.hermline()方法,我们可以通过这个方法得到 Hermite 系列指定的线。

# import numpy and hermline
import numpy as np
from numpy.polynomial.hermite import hermline
  
# using np.hermline() method
gfg = hermline(3, 4) + [1, 2]
  
print(gfg)

输出 :

示例 #2:

# import numpy and hermline
import numpy as np
from numpy.polynomial.hermite import hermline
  
# using np.hermline() method
gfg = hermline(13, 4) + [10, 20]
  
print(gfg)

输出 :