fit data with a line

3 次查看(过去 30 天)
Sarah Smith
Sarah Smith 2020-6-19
评论: darova 2020-6-19
ok

回答(1 个)

Ameer Hamza
Ameer Hamza 2020-6-19
Try something like this
x = linspace(0, 1, 100);
y = 3*x + 2 + rand(size(x));
pf = polyfit(x, y, 1);
y_pred = polyval(pf, x);
r2 = rsquare(y, y_pred); % R-squared
sse = sum((y-y_pred).^2); % SSE

类别

Help CenterFile Exchange 中查找有关 Least Squares 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by