Mathematica入门习题[19]–多项式拟合

王 茂南 2017年10月4日12:29:21
评论
737字阅读2分27秒

 

第十九题--多项式拟合

 

Mathematica入门习题[19]–多项式拟合

 

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]–多项式拟合

 

 

  • 微信公众号
  • 关注微信公众号
  • weinxin
  • QQ群
  • 我们的QQ群号
  • weinxin
王 茂南
  • 本文由 发表于 2017年10月4日12:29:21
  • 转载请务必保留本文链接:https://mathpretty.com/8162.html
匿名

发表评论

匿名网友 填写信息

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: