使用 Python 获取 Legendre 多项式对数据的最小二乘拟合
要获取 Legendre 多项式对数据的最小二乘拟合,可以使用 Python numpy 中的 legendre.legfit() 方法。该方法返回从低到高的 Legendre 系数。如果 y 是二维的,则 y 的第 k 列中的数据的系数在第 k 列中。
参数 x 是 M 个样本(数据)点的 x 坐标 (x[i], y[i])。参数 y 是样本点的 y 坐标。通过为 y 传递包含每个数据集中一列的二维数组,可以(独立地)使用一次对 polyfit 的调用来拟合共享相同 x 坐标的若干组样本点。
参数 deg 是拟合多项式的次数。如果 deg 是一个单一的整数,则拟合中将包含直至且包括 deg 次项的所有项。参数 rcond 是拟合的相对条件数。相对于最大奇异值,小于 rcond 的奇异值将被忽略。默认值为 len(x)*eps,其中 eps 是平台浮点类型的相对精度,在大多数情况下约为 2e-16。参数 full 是确定返回值性质的开关。当为 False(默认值)时,仅返回系数;当为 True 时,还返回来自奇异值分解的诊断信息。
参数 w 是权重。如果非 None,则权重 w[i] 应用于 x[i] 处未平方残差 y[i] - y_hat[i]。理想情况下,权重应选择使得 w[i]*y[i] 的误差都具有相同的方差。当使用逆方差加权时,使用 w[i] = 1/sigma(y[i])。默认值为 None。
步骤
首先,导入所需的库 -
import numpy as np from numpy.polynomial import legendre as L
x 坐标 -
x = np.linspace(-1,1,51)
显示 x 坐标 -
print("X Co-ordinate...\n",x)
y 坐标 -
y = x**3 - x + np.random.randn(len(x)) print("\nY Co-ordinate...\n",y)
要获取 Legendre 多项式对数据的最小二乘拟合,可以使用 Python numpy 中的 legendre.legfit() 方法。该方法返回从低到高的 Legendre 系数。如果 y 是二维的,则 y 的第 k 列中的数据的系数在第 k 列中 -
c, stats = L.legfit(x,y,3,full=True) print("\nResult...\n",c) print("\nResult...\n",stats)
示例
import numpy as np from numpy.polynomial import legendre as L # The x-coordinate x = np.linspace(-1,1,51) # Display the x-coordinate print("X Co-ordinate...\n",x) # The y-coordinate y = x**3 - x + np.random.randn(len(x)) print("\nY Co-ordinate...\n",y) # To get the Least squares fit of Legendre series to data, use the legendre.legfit() method in Python numpy c, stats = L.legfit(x,y,3,full=True) print("\nResult...\n",c) print("\nResult...\n",stats)
输出
X Co-ordinate... [-1. -0.96 -0.92 -0.88 -0.84 -0.8 -0.76 -0.72 -0.68 -0.64 -0.6 -0.56 -0.52 -0.48 -0.44 -0.4 -0.36 -0.32 -0.28 -0.24 -0.2 -0.16 -0.12 -0.08 -0.04 0. 0.04 0.08 0.12 0.16 0.2 0.24 0.28 0.32 0.36 0.4 0.44 0.48 0.52 0.56 0.6 0.64 0.68 0.72 0.76 0.8 0.84 0.88 0.92 0.96 1. ] Y Co-ordinate... [-5.28795520e-02 -7.61252904e-03 7.35194215e-02 -1.33072588e-01 -1.21785636e+00 7.75679385e-02 6.55168668e-01 1.42872448e+00 8.42326214e-01 2.49667989e+00 9.58942508e-01 -2.67332869e-01 -7.85575928e-01 1.93333045e+00 7.32492468e-01 5.23576961e-01 -1.91529521e+00 -1.41434385e+00 4.44787373e-01 3.81831261e-01 3.74128321e-01 1.20562789e+00 1.44870029e+00 1.01091575e-03 8.94334713e-01 1.22342199e+00 9.52055370e-01 -7.29520012e-01 -2.42648820e-01 -9.78434555e-02 1.27468237e-01 9.39489448e-01 1.08795136e+00 2.31230197e+00 1.93107556e-02 -6.13335407e-01 1.93170835e-01 -8.77958854e-01 -3.59868085e-01 4.31331759e-01 7.24929856e-01 -2.22736540e-01 -1.29623093e+00 4.13226024e-01 7.82155644e-01 -1.56618537e-01 1.25043737e+00 6.32386988e-01 -2.75716271e-01 8.80669895e-02 -3.20225560e-01] Result... [ 0.29249467 -0.10521942 -0.24847572 0.2010877 ] Result... [array([39.35467561]), 4, array([1.0425003 , 1.02126704, 0.97827074, 0.95561139]), 1.1324274851176597e-14]