x=[2 4 6 8];
y=[2 11 28 40];
n=length(x);
xhe=0;
yhe=0;
xhe2=0;
xy=0;
for i=1:4
xhe=xhe+x(i);
yhe=yhe+y(i);
xhe2=xhe2+x(i)^2;
xy=xy+x(i)*y(i);
d=[n xhe;xhe xhe2];
c=[yhe xy]/d
end
c;
plot(x,y,'r')
上面的程序高手来看看怎么样改正成直线拟合,我运行出来时折线??
在线等~~!