In a C++ application I'm coding, I need to solve a system of non-linear equations (N equations, N unknowns).

The systems I'm solving will be rather small (up to 10 equations/unknowns), so performance is not going to be a real issue. I've searched the web a bit for a non-linear solver library, and I couldn't get to something which looks easy to use (got to NOX and C/C++ Minpack, but both seem to be an overkill for my need).

Any thoughts and ideas of easy-to-use libraries for this purpose?

link|improve this question
feedback

7 Answers

up vote 2 down vote accepted

There are two options for you, you can use the sundials packages which includes a nonlinear solver, written in C I think. The only problem I've found with it is that you need to give it good initial estimates. The second option is to use NLEQ or NLEQ2 which I think are superior (writtein in FORTRAN but easy to link to C like langages. However I have had some problems locating it just now. There is a good web site with a list of possible options at: http://plato.asu.edu/sub/zero.html

link|improve this answer
Thanks. I've used the sundials package (KINSOL) and it works like a charm from a C++ program on Windows 64. – hoffer Nov 21 '10 at 19:35
feedback

One thing should be clear: non-linear equation solution isn't easy. It's not the same as solving linear equations. You aren't always guaranteed to get a solution. And your choice of initial condition and incrementation strategy can have a profound effect on the solution you do get.

With that said, I can't recommend a particular library, but you should be on the lookout for a linear algebra package that includes Newton-Raphson iteration in its menu of choices.

link|improve this answer
The relevant section of Numerical Recipes is particularly clear on your first point. – Alexandre C. Nov 20 '10 at 17:46
feedback

Numerical Recipes has a routine that will do the job for you.

link|improve this answer
+1 - yes, exactly. – duffymo Nov 20 '10 at 18:09
A great source of code is netlib. Mostly it's FORTRAN but f2c will soon see to that. Incidentally I'd say f2c is one of the great programs of all time! I'd recommend Numerical Recipes as a great way to get good orientation in many areas of numerical analysis without needing to be an expert. – David Heffernan Nov 20 '10 at 18:17
feedback

It depends on how non-linear the equations are. If they possess some "nice" properties...most obvious being positive-semi-definite matrix or convexity, there may be specialized algorithms available. I use IBM/ILOG CPLEX for most of my linear programming needs. Libraries are provided that can be pulled into C++ applications. Although I have not used their quadratic programming module, it is really the state-of-the-art in high horse-power linear and (well-behaved) non-linear programming.

link|improve this answer
feedback

Have you looked at COIN-OR? It might help if you submit your question to the OR-Exchange.

link|improve this answer
feedback

It's not free by any means, but Solver would work here.

link|improve this answer
feedback

There is always GSL, but all the comments made in the other answers apply to this as well:

http://www.gnu.org/software/gsl/manual/html_node/Multidimensional-Root_002dFinding.html#index-nonlinear-systems-of-equations_002c-solution-of-2426

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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