在 Python 中将多项式转换为拉盖尔级数
若要将多项式转换为拉盖尔级数,请在 Python Numpy 中使用 laguerre.poly2lag() 方法。将表示多项式系数的数组(按从最低到最高的阶数排序)转换为按从最低到最高的阶数排序的等效拉盖尔级数的系数数组。
此方法返回一个包含等效拉盖尔级数的系数的一维数组。参数 pol 是一个包含多项式系数的一维数组
步骤
首先导入必需的库 −
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)
若要将多项式转换为拉盖尔级数,请在 Python Numpy 中使用 laguerre.poly2lag() 方法 −
print("\nResult (polynomial to laguerre)...\n",L.poly2lag(c))
示例
import numpy as np from numpy.polynomial import laguerre as L # Create an array using the numpy.array() method c = np.array([1, 2, 3, 4, 5]) # Display the array print("Our Array...\n",c) # Check the Dimensions print("\nDimensions of our Array...\n",c.ndim) # Get the Datatype print("\nDatatype of our Array object...\n",c.dtype) # Get the Shape print("\nShape of our Array object...\n",c.shape) # To convert a polynomial to a Laguerre series, use the laguerre.poly2lag() method in Python Numpy 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.]
广告