How can I find the coeficients alpha, beta of the simple linear regression, using polyfit function?
2 views (last 30 days)
Show older comments
How can I find the coeficients alpha, beta for the X coordinates of the simple linear regression, using polyfit function?
0 Comments
Accepted Answer
Torsten
on 10 Dec 2022
x = (0:0.1:1).';
y = 3*x + 4 + 0.01*randn(numel(x),1);
polyfit(x,y,1)
0 Comments
More Answers (0)
See Also
Categories
Find more on Linear and Nonlinear Regression in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!