第十九题--多项式拟合
![Mathematica入门习题[19]–多项式拟合](https://img.mathpretty.com/snipaste_20170912_165303.png?imageView2/0/q/75|watermark/2/text/5YWz5rOo5YWs5LyX5Y-377ya5paH6Im65pWw5a2m5ZCb/font/5b6u6L2v6ZuF6buR/fontsize/540/fill/IzAwMDAwMA==/dissolve/100/gravity/SouthEast/dx/10/dy/10|imageslim)
Clear["Global`*"]
point = Table[{i, Log[i]}, {i, 1, 101, 10}];
fn = FindFit[point,
a + b*x + c*x^2 + d*x^3 + e*x^4 + f^x^5, {a, b, c, d, e, f}, x];
ff[x_] := a + b*x + c*x^2 + d*x^3 + e*x^4 + f^x^5 /. fn
Plot[ff[x], {x, 0, 101}]~Show~ListPlot[point]
![Mathematica入门习题[19]–多项式拟合](https://img.mathpretty.com/snipaste_20170912_205345.png?imageView2/0/q/75|watermark/2/text/5YWz5rOo5YWs5LyX5Y-377ya5paH6Im65pWw5a2m5ZCb/font/5b6u6L2v6ZuF6buR/fontsize/540/fill/IzAwMDAwMA==/dissolve/100/gravity/SouthEast/dx/10/dy/10|imageslim)
- 微信公众号
- 关注微信公众号
-
- QQ群
- 我们的QQ群号
-


![Mathematica入门习题[33]--微分方程组通解](https://mathpretty.com/wp-content/themes/begin/img/random/5.jpg)
![Mathematica入门习题[32]--积分](https://img.mathpretty.com/20210911_162047_y47j0gu.jpg)
![Mathematica入门习题[31]--极限与导数](https://img.mathpretty.com/20210911_162021_1uyn4xz.jpg)
![Mathematica入门习题[30]--解方程](https://img.mathpretty.com/20210911_162028_ouho1s3.jpg)
![Mathematica入门习题[29]--级数展开](https://img.mathpretty.com/20210911_162031_ifrgvfm.jpg)
![Mathematica入门习题[28]--级数求和(Sum的使用)](https://img.mathpretty.com/20210911_162124_pk73t7w.jpg)
![Mathematica入门习题[27]--Grid格子函数的使用](https://img.mathpretty.com/20210911_162059_8b2hciq.jpg)
![Mathematica入门习题[26]--绘制参数方程](https://img.mathpretty.com/20210911_161401_9q0dovo.jpg)
![Mathematica入门习题[25]--符号微分与积分](https://img.mathpretty.com/20210911_162015_z7nxw4h.jpg)

评论