How to do a regression line ?

댓글 수: 1

Stephan
Stephan 2018년 8월 22일
Do you have access to Optimization Toolbox or to Curve Fitting Toolbox?

댓글을 달려면 로그인하십시오.

답변 (2개)

Star Strider
Star Strider 2018년 8월 22일

1 개 추천

To do a simple linear least-square fit, see the mldivide,\ (link) function.

댓글 수: 5

Note that this solution only gives a correct answer, when the function passes through the origin of the coordinate system
y= m .* x + n ---> with n = 0
will give a correct answer. If n~=0 you get more bad results for m the more n is different from zero.
It gives a correct result if you include a column vector of ones with the independent variable to estimate the intercept:
B = [x(:) ones(size(x(:)))] \ y(:); % Estimate Parameters
yfit = [x(:) ones(size(x(:)))] * B; % Calculate Regression Line
figure
plot(x, y, 'pg')
hold on
plot(x, yfit, '-r')
hold off
grid
The polyfit (link) and polyval (link) options, with a polynomial order of 1, will also work.
Stephan
Stephan 2018년 8월 22일
Nice,
and learned something again ;-)
Star Strider
Star Strider 2018년 8월 22일
Thank you!
Actually, I got the idea for the column of ones from the documentation for the regress (link) function when I first began using it, many years ago. (I simply forgot to include polyfit and friends initially.)
Stephan
Stephan 2018년 8월 22일
I had to think about it for a few minutes. But after understanding what happens, i saw that this is a pretty nice approach.

댓글을 달려면 로그인하십시오.

Image Analyst
Image Analyst 2018년 8월 22일

0 개 추천

See my attached demo.

카테고리

도움말 센터File Exchange에서 Get Started with Curve Fitting Toolbox에 대해 자세히 알아보기

태그

질문:

2018년 8월 22일

댓글:

2018년 8월 22일

Community Treasure Hunt

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

Start Hunting!

Translated by