I am looking for a C# implementation of the Levenberg–Marquardt algorithm for non-linear least squares fit.
C# implementation of Levenberg–Marquardt algorithm
16k Views Asked by HaMo At
3
There are 3 best solutions below
1

You might want to try csmpfit. It is open source.
Update:
The project has been moved to GitHub at https://github.com/cureos/csmpfit.
0

Here is an explanation article plus C# code:
http://www.imagingshop.com/articles/least-squares
It uses Math.NET Numerics for linear algebra to simplify the Levenberg-Marquardt algorithm.
Levenberg-Marquardt.NET by Krzysztof Kniaz has worked very well for me.