Least squares regression to find coefficients
์กฐํ ์: 1 (์ต๊ทผ 30์ผ)
์ด์ ๋๊ธ ํ์
Not sure what to do here. I tried doing it all seperately by setting noise to 0, then to 50, then 100 and using polyfit but I get the same answer everytime. I also tried using the backslash.
y(๐ฅ)=๐1+๐2๐ฅ
where
x = 0:0.1:20;
noise =?? % a number, to define
y= 4*x + noise*rand(1,length(x));
Vary the value for noise as 0, 50 and 100 to get three different results for ๐1and ๐2,
From a linear algebra standpoint, determine the coefficients, ๐1and ๐2, of the least-squares-regression of a line fit through the data defined above.
๋๊ธ ์: 0
๋ต๋ณ (1๊ฐ)
Asad (Mehrzad) Khoddam
2020๋
9์ 15์ผ
one solution is:
[length(x) sum(x); sum(x) sum(x.^2)]\[sum(y) ; sum(x.*y)]
๋๊ธ ์: 0
์ฐธ๊ณ ํญ๋ชฉ
์นดํ ๊ณ ๋ฆฌ
Help Center ๋ฐ File Exchange์์ Linear and Nonlinear Regression์ ๋ํด ์์ธํ ์์๋ณด๊ธฐ
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!