Python Numpy np.hermline()方法
在np.hermline()方法的帮助下,我们可以通过使用np.hermline()方法得到hermite系列指定的线。
语法: np.hermline(off, scl)
返回:返回**off + sclx的赫米特序列。
例子#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)
输出 :
[4. 4.]
例子#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)
输出 :
[23. 22.]