Feeds
已回答
linear fit
x = 1:10; y1 = x + randn(1,10); scatter(x,y1,25,'b','*') P = polyfit(x,y1,1); yfit = P(1)*x+P(2); ho...
linear fit
x = 1:10; y1 = x + randn(1,10); scatter(x,y1,25,'b','*') P = polyfit(x,y1,1); yfit = P(1)*x+P(2); ho...
5 years 前 | 0
