using least square fit to find the best fit parameters
Show older comments
I have 3 variables y, x1, and x2 stored in vector form. I know that y=f(x1,x2) and has the form y = a*b*x1/(1+b*x1+c*x2) + d*x1. a,b,c, and d are parameters. How can I use lsqnonlin to find a,b,c,d?
Thank you
5 Comments
Rik
on 26 Feb 2020
What have you tried so far?
Rik
on 26 Feb 2020
A low quality fit can have two reasons, either the algorithm failed or the data is too noisy. I don't know how sensitive lsqnonlin is to initial values, but it is possible you ended up with a local minimum.
Annie Ng
on 26 Feb 2020
Rik
on 26 Feb 2020
You could try with a different fitting function or with different initial guesses. Those two will only help if your function properly describes the trend in your data and if your data isn't noisy in the first place.
Answers (1)
Alex Sha
on 26 Feb 2020
0 votes
Hi, Annie, upload your data file please, if possible.
Categories
Find more on Least Squares 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!