Simple x-y curve fitting from data set.
조회 수: 3 (최근 30일)
이전 댓글 표시
I'm struggling to find a simple example of simple curve fitting in MATLAB.
I just want to do a best-fit curve for the following data:
x = [1 1.5 2 2.5 3 10e10]
y = [19.74 14.26 12.34 11.45 10.97 9.87];
Please could someone show me how to do it?
댓글 수: 2
채택된 답변
the cyclist
2013년 2월 24일
편집: the cyclist
2013년 2월 24일
If you type
doc polyfit
in the MATLAB command window, you will see a simple example (and of course the syntax of the command).
EDIT:
I didn't really pay attention to the, uh, unusual shape of your data. polyfit() does simple polynomial fitting, so it's not right for you.
There's not really going to be a fit for a point "at infinity". You should probably add some detail about what you are trying to really accomplish here.
댓글 수: 3
Jurgen
2013년 2월 24일
By definition that line is the best fit , as it goes through every point? If you wan't more restrictions you need to decide on what form your fit must have, even if you don't know the "true" underlying function.
the cyclist
2013년 2월 24일
Tom, that example starts off with erf() simply to create the sample of data which will be fit later.
As Jurgen says, you need to decide what form you want.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Get Started with Curve Fitting Toolbox에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!