Hello.
I would like to perform a linear least squares fit to 3 data points.
The help files are very confusing, to the point where i can't figure out whether this is a base function of Matlab, I need the curve fitting toolbox, optimization toolbox, or both.
Thanks,
Alex

 채택된 답변

Star Strider
Star Strider 2018년 12월 21일

3 개 추천

You don’t need any toolboxes. Use polyfit (link) and polyval functions, or the mldivide (link) operator.

추가 답변 (2개)

Image Analyst
Image Analyst 2018년 12월 21일
편집: Image Analyst 2018년 12월 21일

3 개 추천

See attached polyfit demo. Adapt as needed. All you need is base MATLAB - no toolboxes.
For example
coefficients = polyfit(x, y, 1);
yFitted = polyval(coefficients, x); % yFitted will be at the 3 points where x is. There will be 3 yFitted values.
If you want a lot more points, you can pass in more x to polyval():
xFit = linspace(min(x), max(x), 1000); % 1000 points.
yFitted = polyval(coefficients, xFit);

댓글 수: 1

Thanks Star Strider and Image Analyst!
You guys are amazingly fast.

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

Tamas Kis
Tamas Kis 2021년 7월 25일
편집: Tamas Kis 2021년 7월 26일

0 개 추천

Function to perform curve fitting using linear least squares:
Linear and polynomial fits are linear least square fits, while the other fits (power, exponential, logarithmic) are approximated by first linearizing the data.

카테고리

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

제품

릴리스

R2018b

태그

질문:

2018년 12월 21일

편집:

2021년 7월 26일

Community Treasure Hunt

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

Start Hunting!

Translated by