Help with fitting linear equation

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개)

Thorsten
Thorsten 2015년 11월 13일

1 개 추천

help robustfit
the final exampel contains also a standard linear regression using "regress".
Star Strider
Star Strider 2015년 11월 13일

0 개 추천

And a third option:
B = [ones(size(x(:))) x(:)]\y(:);
slope = B(2)
intercept = B(1)
Image Analyst
Image Analyst 2015년 11월 13일

0 개 추천

See my attached polyfit demo that I have posted countless times.

카테고리

도움말 센터File Exchange에서 Linear and Nonlinear Regression에 대해 자세히 알아보기

질문:

2015년 11월 13일

답변:

2015년 11월 13일

Community Treasure Hunt

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

Start Hunting!

Translated by