The only Google search result I found is QuadProg++ but it can not solve the quadratic programming problem whose matrix is not applicable for Cholesky decomposition.

So can anyone give me some suggestion on other library? Thanks.

link|improve this question
Sorry for stating the obvious but I had to check Wikipedia to find out what quadratic programming is and I saw it contains references to a few implementations, have you checked those? Or maybe hqp.sourceforge.net/index.html or gnu.org/s/gsl would help? – rve Nov 6 '11 at 8:04
@rve I check the gsl, it does not have a quadratic programming solver function. I also checked the wiki, most of them are either not written in C/c++ or very hard to setup.. I will check the hqp to see whether it work, thanks – Daniel Gao Nov 6 '11 at 15:07
How could a matrix be non-applicable to Cholesky decomposition? Any symmetric positive-semidefinite matrix is applicable (and decomposition takes ~n^3/3 FLOPs). Expression $x^TQx$ can always be (re-)written with $Q$ being symmetric. Do you mean, that it is not positive-semidefinite? – fiktor 19 hours ago
feedback

1 Answer

LAPACK has a number of Cholesky decomposition routines (they call it Cholesky factorization). There are C++ wrappers available for LAPACK (see this SO question for a list).

The answer from Anycom in that post is a bit cryptic, but he meant that there are LAPACK bindings that can be used together with Boost's linear algebra library, uBLAS.


I've found this library: OOQP (Object-Oriented Software for Quadratic Programming). If you scroll down that page, you'll find a research paper and a user guide. There seems to be a C++ API for that library. Hope this helps.

link|improve this answer
But this does not solve my problem. The Symmetric matrix in the quadratic programming problem I am trying to solve is not applicable for Cholesky decomposition. – Daniel Gao Nov 6 '11 at 18:00
Oops, I didn't read your question carefully enough. Sorry. – Emile Cormier Nov 6 '11 at 18:03
@DanielGao: Updated my answer. – Emile Cormier Nov 6 '11 at 18:17
feedback

Your Answer

 
or
required, but never shown

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