给定一些数据点在图表中绘制:
plot(<<a>|<b>>,style=point);
如何通过积分进行回归?那就是找到最好的曲线,直线等。
答案 0 :(得分:1)
您可以查看CurveFitting包的帮助页或Statistics,Regression的帮助页。 (请注意,后者应该通过在Maple 16帮助浏览器的搜索框中输入regression
来显示。)
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)
);