使用Python计算带有给定复根的Legendre级数的根

使用Python计算带有给定复根的Legendre级数的根

要计算Legendre级数的根,请使用Python中的polynomial.legendre.lagroots()方法。该方法返回系列的根数组。如果所有根都是实数,则out也是实数,否则它是复数。参数c是一个1-D系数数组。

步骤

首先,导入所需的库 –

from numpy.polynomial import legendre as L

计算Legendre级数的根 –

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

获取数据类型 –

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

获取形状 –

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

示例

from numpy.polynomial import legendre as L

# 要计算Legendre级数的根,请使用Python中的polynomial.legendre.lagroots()方法。
# 该方法返回系列的根数组。如果所有根都是实数,则out也是实数,否则它是复数。

# 参数c是一个1-D系数数组。
j = complex(0,1)
print("Result...\n",L.legroots((-j, j)))

# 获取数据类型
print("\nType...\n",L.legroots((-j, j)).dtype)

# 获取形状
print("\nShape...\n",L.legroots((-j, j)).shape)

输出

Result...
   [1.+0.j]

Type...
complex128

Shape...
(1,)

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程

Numpy 示例