将Python中的多项式转换为Laguerre系列
要将多项式转换为Laguerre系列,请在Python Numpy中使用laguerre.poly2lag()方法。 将表示多项式系数的数组从最低次数到最高次数排序,转换为等效Laguerre系数的数组,从最低到最高次数排序。
该方法返回一个包含等效Laguerre系数的1-D数组。 参数pol是包含多项式系数的1-D数组
步骤
首先,导入所需库−
import numpy as np
from numpy.polynomial import laguerre as L
使用numpy.array()方法创建一个数组−
c = np.array([1, 2, 3, 4, 5])
显示数组−
print("Our Array...\n",c)
检查维数−
print("\nDimensions of our Array...\n",c.ndim)
获取数据类型−
print("\nDatatype of our Array object...\n",c.dtype)
获取形状−
print("\nShape of our Array object...\n",c.shape)
要将多项式转换为Laguerre系列,请在Python Numpy中使用laguerre.poly2lag()方法−
print("\nResult (polynomial to laguerre)...\n",L.poly2lag(c))
示例
import numpy as np
from numpy.polynomial import laguerre as L
# 使用numpy.array()方法创建一个数组
c = np.array([1, 2, 3, 4, 5])
# 显示数组
print("Our Array...\n",c)
# 检查维数
print("\nDimensions of our Array...\n",c.ndim)
# 获取数据类型
print("\nDatatype of our Array object...\n",c.dtype)
# 获取形状
print("\nShape of our Array object...\n",c.shape)
# 要将多项式转换为Laguerre系列,请在Python Numpy中使用laguerre.poly2lag()方法
print("\nResult (polynomial to laguerre)...\n",L.poly2lag(c))
输出
Our Array...
[1 2 3 4 5]
Dimensions of our Array...
1
Datatype of our Array object...
int64
Shape of our Array object...
(5,)
Result (polynomial to laguerre)...
[ 153. -566. 798. -504. 120.]