least-squares-regression
์กฐํ ์: 1 (์ต๊ทผ 30์ผ)
์ด์ ๋๊ธ ํ์
I need help understing what to do here,
I know i need to slobe for p1 and p2x but stuck, I have the code below but just stuck.
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.
thank you
๋๊ธ ์: 0
๋ต๋ณ (1๊ฐ)
KSSV
2020๋
9์ 14์ผ
Read about polyfit. If you have the data x, y you can fit a line and get p1, p2 using polyfit.
p = polyfit(x,y,1) ;
p1 = p(1) ; p2 = p(2) ;
๋๊ธ ์: 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!