在Python中使用给定的复数根生成Legendre级数

在Python中使用给定的复数根生成Legendre级数

要生成Legendre级数,请使用Python中的polynomial.legendre.legfromroots()方法。该方法返回一个一维数组,其中包含系数。如果所有根都是实数,则输出是一个实数组;如果某些根是复数,则输出即使所有结果中的系数都是实数,也是复数。参数roots是包含根的序列。

步骤

首先,导入所需的库-

from numpy.polynomial import legendre as L

使用Python的polynomial.legendre.legfromroots()方法生成Legendre系列 –

j = complex(0,1)
print("Result...\n",L.legfromroots((-j, j)))

获取数据类型 −

print("\nType...\n",L.legfromroots((-j, j)).dtype)

获得形状−

print("\nShape...\n",L.legfromroots((-j, j)).shape)

示例

from numpy.polynomial import legendre as L

# To generate a Legendre series, use the polynomial.legendre.legfromroots() method in Python
j = complex(0,1)
print("Result...\n",L.legfromroots((-j, j)))

# Get the datatype
print("\nType...\n",L.legfromroots((-j, j)).dtype)

# Get the shape
print("\nShape...\n",L.legfromroots((-j, j)).shape)

输出

Result...
   [1.33333333+0.j 0. +0.j 0.66666667+0.j]

Type...
complex128

Shape...
(3,)

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程