Finding Linear regression equation

55 ビュー (過去 30 日間)
HAAAAH
HAAAAH 2019 年 9 月 11 日
回答済み: Bruno Luong 2019 年 9 月 11 日
I have table of data
x = [65 65 62 67 69 65 61 67]
y = [105 125 110 120 140 135 95 130]
How can i find the equation y = mx+b of linear regression. I have tried so far but dont know how to find m and b ?
x = [65 65 62 67 69 65 61 67]
y = [105 125 110 120 140 135 95 130]
plot (x,y, 'r*')
lsline
% determine how many samples do we have
N= length(x)
% Fit to f(x) = b + m*x
X = [ones [N,1] x]
b = mldivide(X,y)

回答 (2 件)

Bruno Luong
Bruno Luong 2019 年 9 月 11 日
P=polyfit(x,y,1);
m=P(1),
b=P(2),
% linefit = polyval(P,x)

Torsten
Torsten 2019 年 9 月 11 日
編集済み: Torsten 2019 年 9 月 11 日
x = [65 65 62 67 69 65 61 67];
y = [105 125 110 120 140 135 95 130];
X = [ones(numel(x),1),x.'];
p = X\(y.');
b = p(1)
m = p(2)

カテゴリ

Help Center および File ExchangeLinear and Nonlinear Regression についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by