我试图将模拟数据拟合成多项式。幸运的是,我确实知道确切的数据,我知道我的价值观一点都不差!
然而,当试图使用数学将数据拟合到多项式函数时,结果根本不令人满意。
与精确数据相比,(减少的)数据:
A = {{1, 4.20109`*^7}, {1.2214`, 5.92216`*^7}, {1.49182`,
9.21732`*^7}, {1.82212`, 1.60874`*^8}, {2.22554`,
3.21498`*^8}, {2.71828`, 7.4201`*^8}, {3.32012`,
2.01259`*^9}, {4.0552`, 6.24526`*^9}, {4.95303`,
2.2347`*^10}, {6.04965`, 9.13043`*^10}, {7.38906`,
4.12888`*^11}, {9.02501`, 2.03485`*^12}, {11.0232`,
1.07487`*^13}, {13.4637`, 5.98665`*^13}, {16.4446`,
3.49113`*^14}, {20.0855`, 1.96163`*^15}, {24.5325`,
1.15952`*^16}, {29.9641`, 8.46196`*^16}, {36.5982`,
5.93001`*^17}, {44.7012`, 2.86328`*^18}, {54.5982`,
1.56988`*^19}, {66.6863`, 8.60926`*^19}, {81.4509`,
4.95028`*^20}, {99.4843`, 2.56403`*^21}, {121.51`,
1.85016`*^22}};
InterFunc = Simplify[InterpolatingPolynomial[A, x]];
poly = Fit[A, {1, x, x^2, x^3, x^4, x^5, x^6, x^7, x^9}, x]
FindFit[A,
a + b*x + c*x^2 + d*x^3 + e*x^4 + l*x^5 + m*x^6 + h*x^7 + o*x^9, {a,
b, c, d, e, l, m, h, o}, x]
func = 10966470 + 12755136*x + 9092592*x^2 + 5269920*x^3 +
2435256*x^4 + 1059120*x^5 + 257880*x^6 + 94272*x^7 + 3504*x^9;
Show[ListLogPlot[A, PlotStyle -> Red],
LogPlot[{poly}, {x, 0, First[Last[A]]}, PlotStyle -> Orange],
LogPlot[{func}, {x, 0, First[Last[A]]}, PlotStyle -> Blue]]
我的第一个想法是使用插值多项式命令并将indata减少到10,这样我得到一个9阶多项式。它不工作,Fit或FindFit也不工作,尽管“func”显示存在一个很好地拟合数据的多项式。
是否有其他方法可以正确地进行匹配?Mathematica使用LeastSquare拟合,还有其他方法可以使用吗?
另一个更数学的问题:多项式表现良好,为什么LeastSquare在这里失败?