Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am attempting to implement the apache commons math optimization package. I am searching for a "hello world" example to solve a constrained non-linear system of two equations. My system is differentialable and consists of two independent variables. The apache commons documentation and a thorough google search have yielded no code examples for me to build off of -- any suggestions out there?

share|improve this question

1 Answer

If you want to optimize a nonlinear function and your problem consists of nonlinear constraints, the algorithms in Apache Commons Math is not sufficient. Currently, only nonlinear objective functions with variable bounds is supported.

To solve general NLP problems where the derivatives are known, you might instead consider using Ipopt via its Java interface.

If the derivatives are not known, and the number of variables is relatively small (less than 100), you could consider to use the Java port of the COBYLA2 optimizer, which is available here.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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