在 Python 中计算勒让德级数的根
要计算勒让德级数的根,请使用多项式。Python中的方法。该方法返回系列的根数组。如果所有的根都是实数,那么 out 也是实数,否则就是复数。参数 c 是一维系数数组。legendre.legroots()
脚步
首先,导入所需的库 -
fromnumpy.polynomialimport legendre as L
要计算勒让德级数的根,请使用多项式。Python中的方法 -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)
示例
fromnumpy.polynomialimport legendre as L输出结果#要计算勒让德级数的根,请使用 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)
Result...[-0.76759188 0.43425855]
Type...
float64
Shape...
(2,)
以上是 在 Python 中计算勒让德级数的根 的全部内容, 来源链接: utcz.com/z/297311.html