I've been trying to get this fitting operation to work since more than 10 days. I wrote a C++ class for fitting using Levenberg-Marquardt algorithm, and I tested it with simple polynomials and the fit is a success; but with the real experimental function I need for my experiment, it's not working.
The same function I fitted with Mathematica, and it was OK to do it there (but slow, 12 seconds per fit, which is why I'm using C++). My program acts crazy and returns wrong results when I do the fit. Could you please check the functions I use and tell me whether anything is wrong?
The following is the procedure of fitting which I use in my class. Again, I'd like to mention that it worked with polynomials, so I could've have done a very deep mistake here that conflicts with only some special functions... that's my assumption.
The initial values I use are very close to the correct ones.
If you need any additional information, please let me know. Any help is very highly appreciated.
Well, a quick look reveals that you should have
That is, of course, assuming that
J
is the gradient and not the negative gradient.This is the case with any Newton or quasi-Newton method (like Levenberg-Marquardt).