How to guess initialization parameters for non-linear curve fitting with nlinfit?
Show older comments
I'm trying to use fit the data using this equation:
gaussFit = @(beta, stepFit) (beta(1).*(( ((stepFit./beta(2)).^4)/(1+((stepFit./beta(2)).^4))).*exp((-1).*(stepFit./beta(3))).*cos( (((2*pi).*stepFit)./beta(4)) + beta(5))));
initials = [-0.000006, 0.07, 0.06, 0.12, 0.15];
coeffs = lsqcurvefit(gaussFit, initials, stepFit, avgSPResp2);
(Data attached)
But it is giving me a staight line (which I'm guessing is because the initials are way off compared to the actual fit parameters. However, I've tried to estimate the parameters as much as possible looking at the data.
How do I address this issue?
Thanks!
3 Comments
Matt J
on 28 Feb 2020
The initial guesses you've been using so far do not look arbitrary. Where did they come from?
Aindrila Saha
on 28 Feb 2020
Accepted Answer
More Answers (1)
Maybe by doing a Gaussian fit first, it would be easier to guess what the beta(i) parameters should be. You can do a Gaussian fit using gaussfitn (Download).
params=gaussfitn(stepFit,avgSPResp2);
[D,A,mu,sig]=deal(params{:})
z=@(x) D + A*exp( -0.5 * (x-mu).' * inv(sig) *(x-mu) );
hold on
xlims=[min(stepFit),max(stepFit)];
plot(stepFit,avgSPResp2,'ro')
fplot(z,xlims,'Color','k')
xlabel 'stepFit'
ylabel 'avgSPRResp2'
hold off

Categories
Find more on Get Started with Curve Fitting Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!