Fit two data sets with 3 fit parameters, one parameter is the same
显示 更早的评论
I have 2 data sets: x1,y1 & x2,y2 (different lengths).
% k is a constant
I want to fit:
f1 = @ (p,x1) p(1)./sqrt((x1-k).^2+p(2)^2)+p(3);
f2 =@ (p, x2) p(4)./sqrt((x2-k).^2+p(5)^2)+p(3);
Both data sets should be fit to the same p(3). I would like the fitting to return [p(1) p(2) p(3) p(4) p(5)]
Can I do this with lsqcurvefit?
I hope this makes sense,
Luke
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 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!