Help with fitting linear equation

1 次查看(过去 30 天)
I need help with my HW pls, I have a data set and I have to fit a linear equation on a given data to identify the intercept and the slope

回答(4 个)

Sean de Wolski
Sean de Wolski 2015-11-13

Thorsten
Thorsten 2015-11-13
help robustfit
the final exampel contains also a standard linear regression using "regress".

Star Strider
Star Strider 2015-11-13
And a third option:
B = [ones(size(x(:))) x(:)]\y(:);
slope = B(2)
intercept = B(1)

Image Analyst
Image Analyst 2015-11-13
See my attached polyfit demo that I have posted countless times.

Community Treasure Hunt

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

Start Hunting!

Translated by