在Python中计算Legendre系列的根
要计算Legendre系列的根,可以使用Python中的polynomial.legendre.legroots()方法。该方法返回系列的根数组。如果所有根都是实数,则输出也是实数,否则为复数。参数c是一个一维数组,表示系数。
步骤
首先,导入所需的库-
from numpy.polynomial import legendre as L
要计算Legendre级数的根,可以在Python中使用polynomial.legendre.legroots()方法 –
print("Result...\n",L.legroots((0, 1, 2)))
获取数据类型 −
print("\nType...\n",L.legroots((0, 1, 2)).dtype)
获得形状 −
print("\nShape...\n",L.legroots((0, 1, 2)).shape)
示例
from numpy.polynomial import legendre as L
# To compute the roots of a Legendre series, use the polynomial.legendre.legroots() method in Python
print("Result...\n",L.legroots((0, 1, 2)))
# Get the datatype
print("\nType...\n",L.legroots((0, 1, 2)).dtype)
# Get the shape
print("\nShape...\n",L.legroots((0, 1, 2)).shape)
输出
Result...
[-0.76759188 0.43425855]
Type...
float64
Shape...
(2,)