使用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,)