Curve fitting nonlinear data sets by tuning multiple parameters

조회 수: 11 (최근 30일)
Shahriar Mahmud
Shahriar Mahmud 2021년 8월 7일
댓글: Matt J 2021년 8월 9일
Hi, I have multiple data sets (rn 5 sets but may increase later). I need to find out the values of three parameters C, a and b in order to best fit these three data sets. The function is as follows:
z=C*x^a*y^b
The datasets I got is as such, each data set has a given y. And once i change x, z changes. How do I tune C,a and b?
Thanks.
  댓글 수: 2
Matt J
Matt J 2021년 8월 7일
편집: Matt J 2021년 8월 7일
So, for each data set, x is a vector and y is a scalar?
And it what form are the data sets stored? A cell array?
Shahriar Mahmud
Shahriar Mahmud 2021년 8월 7일
Yes x is a vector and Y is a scaler. The z data and x data sets are stored in separate arrays.

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

채택된 답변

Matt J
Matt J 2021년 8월 7일
편집: Matt J 2021년 8월 7일
You can get an initial guess using log-linear fitting,
n=[numel(x1),numel(x2),numel(x3)]; %concatenate data
X=[x1(:);x2(:);x3(:)];
Y=repelem([y1;y2;y3],n);
Z=[z1(:);z2(:),z3(:)];
p=[X.^0,log(X),log(Y)]\log(z); %linear algebraic solution
C0=exp(p(1)); %Initial estimates
a0=p(2);
b0=p(3);
Then you could refine with fminspleas (Download),
[ab,C]=fminspleas({@(ab,Q) prod(Q.^ab,2)} ,[a0,b0], [X,Y],Z );
a=ab(1);
b=ab(2);
  댓글 수: 2
Shahriar Mahmud
Shahriar Mahmud 2021년 8월 8일
편집: Shahriar Mahmud 2021년 8월 8일
Thanks @Matt J, it worked. I have an additional question though. How do I evaluate this non-linear fit as R2 is not a viable option?
Matt J
Matt J 2021년 8월 9일
Can't you just calculate R2 yourself? It's a pretty easy formula.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Linear and Nonlinear Regression에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by