Linear Regression Matlab code
古いコメントを表示
Hello, this is my matlab script that is supposed to take data from an excel spread sheet and use it to create a y = mx+b function by linear regression. Here is my code and attached is the excel spread sheet. The first row is the amount in gallons and the next two rows are the amount of time it took to move the gallons in seconds.
points = xlsread('data.xlsx');
n = size(points,1);
sum_x = 0;
sum_y = 0;
sum_xy = 0;
sum_x2 = 0;
for i = i:n
sum_x = sum_x + points(i,2);
sum_y = sum_y + points(i,3);
sum_xy = sum_xy + points(i,2)*(points(i,3));
sum_x2 = sum_x2 + (points(i,2)^2);
end
a1 = (n*sum_xy - sum_x*sum_y)/(n*sum_x2 - sum_x2);
a0 = (sum_y/n)-a_1*(sum_x/n);
y_new = a1*x + a_0;
THank you for your help.
5 件のコメント
Brendan Hamm
2015 年 4 月 26 日
So the question is what? Why this is not a proper linear regression? Why we do not require the loop?
Ryan Albawab
2015 年 4 月 26 日
Brendan Hamm
2015 年 4 月 27 日
It is helpful to everyone here if you state any errors you have. See Mohammad's answer, it should help.
Image Analyst
2015 年 4 月 27 日
You haven't defined your x variable yet, like Mohammad did where he called x "gModel" - a more descriptive name than the generic "x". It looks like his code should work. If it does, Vote for it and then click "Accept this answer" .
Or Hirshfeld
2015 年 4 月 27 日
I would use curve fitting function in matlab instead of summing in iterations and calculated formulas.
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Fit Postprocessing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!