Non-linear Simultaneous Fitting/Solution
1 次查看(过去 30 天)
显示 更早的评论
Hi,
I am trying to model two vector data sets f1(x) and f2(x) using two non-linear equations with common variables.
For example:
f1(x) = a0 + a1(k1,t)*exp(-l1*x) + a2(k1,t)*exp(-l2*x)
f2(x) = b0 + b1(k1,t)*exp(-l1*x) + b2(k1,t)*exp(-l2*x)
I would like to simultaneously fit f1(x) and f2(x) to these two equations. Then graphically display the data and fits. The a1, a2, b1, and b2 are expressions which are different but contain the variables k1 and t which will be determined from the simultaneous fit. I would like to use matlab script to do this.
Is fsolve the way to do this? If so, can somebody please give a little direction as to setting this up?
Edit: I have been trying fmincon, but need the minimization to output a global minimum for the vector data sets, not a minimum at each point. Is there a way around this in simple code?
Thanks!
0 个评论
回答(1 个)
Matt Tearle
2012-9-6
编辑:Matt Tearle
2012-9-6
You can treat this as a least-squares problem with 6 parameters: a0, b0, k1, t, l1, and l2. Then make your objective function the total square error ((y1 - f1(x))^2 + (y2 - f2(x))^2). So something like
function err = myerrorfun(c,x1,y1,x2,y2)
f1 = c(1) + [function of c(3) and c(4)]*exp(-c(5)*x1) + ...;
f2 = c(2) + [function of c(3) and c(4)]*exp(-c(5)*x2) + ...;
err = (y1-f1).^2 + (y2-f2).^2;
Then in your main program, call a minimization routine like fmincon:
x1 = ... % enter/load
x2 = ... % all
y1 = ... % the
y2 = ... % data
% make a function handle of one variable (the parameters), with the data embedded
objective = @(c) myerrorfun(c,x1,y1,x2,y2);
% do the fitting
c_fit = fmincon(objective,...);
2 个评论
Matt Tearle
2012-9-12
编辑:Matt Tearle
2012-9-12
In this case, myerrorfun is actually returning the sum of the squared error. You can get the function value as a second output from fmincon (or whatever minimization function you used). But if you want more detailed info, you could make functions to evaluate f1 and f2; call these with c_fit and x1 or x2; take the difference with y1 and y2 and now you have the residuals. Apply whatever standard analysis you normally would to the residuals of a regression -- hist, normplot, scatter(resids(1:end-1),resids(2:end)), etc. Or, of course, apply your favorite goodness-of-fit formula (eg adjusted R^2).
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Least Squares 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!