给定以下图表中绘制的一些数据点:
plot(<<a>|<b>>,style=point);
如何通过点进行回归?那就是找到最好的曲线、直线等。
您可以查看CurveFitting包或Statistics,Regression的帮助页面。(请注意,后者应该通过regression
在 Maple 16 帮助浏览器的搜索框中输入来显示。)
a:=<1,2,3,4,5>:
b:=<2,5,10,17,26>:
P1:=plot(<a|b>,style=point,color=red):
C1:=Statistics:-Fit(s+t*x,a,b,x);
C2:=Statistics:-Fit(s+t*x+u*x^2,a,b,x);
plots:-display(
P1,
plot(C1, x=min(a)..max(a), color=green),
plot(C2, x=min(a)..max(a), color=blue)
);