Python| Numpy np.lagint() 方法
借助np.lagint()
方法,我们可以使用np.lagint()
方法以数组的形式得到拉盖尔级数。
Syntax : np.lagint(array of coefficient)
Return : Return the array of laguerre series.
示例 #1:
在这个例子中我们可以看到,通过使用np.lagint()
方法,我们可以得到数组形式的拉盖尔级数。
# import numpy
from numpy.polynomial.laguerre import lagint
# using np.lagint() method
gfg = lagint([1, 2, 3])
print(gfg)
输出 :
[ 1. 1. 1. -3.]
示例 #2:
# import numpy
from numpy.polynomial.laguerre import lagint
# using np.lagint() method
gfg = lagint([[1, 2, 3], [4, 5, 6]])
print(gfg)
输出 :
[[ 1. 2. 3.]
[ 3. 3. 3.]
[-4. -5. -6.]]