📜  Python| Numpy np.poly2lag() 方法

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

Python| Numpy np.poly2lag() 方法

np.poly2lag()方法的帮助下,我们可以从给定的多项式中得到 laggure 级数系数。

示例 #1:
在这个例子中我们可以看到,通过使用np.poly2lag()方法,我们可以使用这种方法从多项式中得到拉盖尔级数的系数。

# import numpy and poly2lag
import numpy as np
from numpy.polynomial.laguerre import poly2lag
  
arr = np.array([0.1, 0.2, 0.3, 0.4, 0.5])
# using np.poly2lag() method
ans = poly2lag(arr)
  
print(ans)

输出 :

示例 #2:

# import numpy and poly2lag
import numpy as np
from numpy.polynomial.laguerre import poly2lag
  
arr = np.array([-0.5, -0.4, -0.3, -0.2, -0.1, 0, 0.1, 0.2, 0.3, 0.4, 0.5])
# using np.poly2lag() method
ans = poly2lag(arr)
  
print(ans)

输出 :