How to create a curve fit for my data?

조회 수: 1 (최근 30일)
Arpad Takacs
Arpad Takacs 2021년 4월 8일
댓글: Star Strider 2021년 4월 8일
I have the following function: . How can I create a curve fit for my data points?

채택된 답변

Star Strider
Star Strider 2021년 4월 8일
Assuming you have a vector of ‘T’ values that are functions of ‘s’, ‘g’ is given and the parameter to be estimated is ‘x’:
Tfcn = @(x,s,g) 2*pi*sqrt((x+s.^2)./(g.*s)); % Objective Function
s = 1:20; % Create Data
T = rand(size(s))*10; % Create Data
g = 9.81;
X0 = 1;
X = fminsearch(@(x) norm(T - Tfcn(x,s,g)), X0); % Estimate Parameters
figure
plot(s, T, '.')
hold on
plot(s, Tfcn(X,s,g), '-r')
hold off
grid
.
  댓글 수: 2
Arpad Takacs
Arpad Takacs 2021년 4월 8일
편집: Arpad Takacs 2021년 4월 8일
Thank you so much! And how can I calculate the error of the coefficient 'x'? My data also have an error which should be counted as well.
Star Strider
Star Strider 2021년 4월 8일
As always, my pleasure!
If you have the Statistics and Machine Learning Toolbox, use the fitnlm function (introduced in R2013b). It will provide confidence limits on the parameters automatically, and the ‘Tfcn’ will work with it, with one small change in the calling syntax:
mdl - fitnlm(s, T, @(x,s)Tfcn(x,s,g), X0)
Then see the fitnlm documentation I linked to to understand how to get even more information from the ‘mdl’ variable and associated functions.
The nlinfit function is also an option (with the same calling syntax as for fitnlm) for ‘Tfcn’. See that documentation and related functions such as nlparci and nlpredci (linked to in that documentation).

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

추가 답변 (0개)

카테고리

Help CenterFile 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!

Translated by