I am looking for a C# implementation of the Levenberg–Marquardt algorithm for non-linear least squares fit.

link|improve this question
feedback

2 Answers

up vote 0 down vote accepted

This library has worked very well for me.

link|improve this answer
Thanks! I had a look at it a while ago, I couldnt get it to work when I had several input and output parameters for each data point. – itsaboy Feb 3 at 12:08
Thanks! I had a look at it a while ago, I couldnt get it to work when I had several input and output parameters for each data point. Basically I have 3-D input coordinates and 3-D output coordinates, and 3-D reference coordinates for each data point. The 12 parameter function is supposed to make the output equal to the reference value for each point. Thus I calculate the norm of the error (reference value - output value) for each data point in the set as the function I want to minimize. I wasnt able to rewrite the code so that it achieved this. – itsaboy Feb 3 at 12:14
Instead I use a robust c++ program and a c++ to c# wrapper function. – itsaboy Feb 3 at 12:15
Sorry that library did not work for you but good to hear you found a way to do it. Do you mind sharing which C++ library you used? Have you considered trying to port it to C#? Not worth the effort or are you concerned about speed? – Craig W Feb 3 at 17:35
joachimwuttke.de/lmfit/index.html the library is in c. the quick and dirty solution i did was to compile the source code as a c++ project, and create a dll that could be executed from c#, using DllExport() / DllImport() – itsaboy Feb 7 at 8:52
feedback

Please try this link At the bottom of the page you'll find different implementations including C#

link|improve this answer
Thank you. I have had a look at it already, but it is not free of charge for commercial users. Unfortunately my customer requires it to be free of charge. – itsaboy Oct 31 '11 at 8:55
oh I thought you meant open source – Guy Oct 31 '11 at 9:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.