Open source alternative to matlab's fmincon function? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T09:22:10Z http://stackoverflow.com/feeds/question/49926 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/49926/open-source-alternative-to-matlabs-fmincon-function 7 Open source alternative to matlab's fmincon function? dF 2008-09-08T15:19:59Z 2009-04-19T08:10:36Z <p>Does anyone know of an open-source alternative to Matlab's <a href="http://www.mathworks.com/access/helpdesk/help/toolbox/optim/index.html?/access/helpdesk/help/toolbox/optim/ug/fmincon.html" rel="nofollow"><code>fmincon</code></a> function for constrained linear optimization? I'm rewriting a matlab program to use Python / <a href="http://numpy.scipy.org/" rel="nofollow">numpy</a> / <a href="http://www.scipy.org/" rel="nofollow">SciPy</a> and this is the only function I haven't found an equivalent to. A numpy-based solution would be ideal, but any language will do.</p> http://stackoverflow.com/questions/49926/open-source-alternative-to-matlabs-fmincon-function/49929#49929 0 Answer by jjnguy for Open source alternative to matlab's fmincon function? jjnguy 2008-09-08T15:21:43Z 2008-09-08T15:21:43Z <p>There is a program called <a href="http://www.scilab.org/" rel="nofollow">SciLab</a> that is a Matlab clone.</p> <p>I haven't used it at all, but it is open source and might have the function you are looking for.</p> http://stackoverflow.com/questions/49926/open-source-alternative-to-matlabs-fmincon-function/49930#49930 0 Answer by lindelof for Open source alternative to matlab's fmincon function? lindelof 2008-09-08T15:22:49Z 2008-09-08T15:22:49Z <p><a href="http://www.gnu.org/software/octave/" rel="nofollow">GNU Octave</a> is another Matlab clone that might have what you need.</p> http://stackoverflow.com/questions/49926/open-source-alternative-to-matlabs-fmincon-function/50041#50041 -1 Answer by wcm for Open source alternative to matlab's fmincon function? wcm 2008-09-08T16:02:04Z 2008-09-08T16:02:04Z <p>I don't know if it's in there, but there's a python distribution called <a href="http://www.enthought.com/" rel="nofollow">Enthought</a> that might have what you're looking for. It was designed specifically for data analysis has over 60 additional libraries.</p> http://stackoverflow.com/questions/49926/open-source-alternative-to-matlabs-fmincon-function/70798#70798 6 Answer by MikeCroucher for Open source alternative to matlab's fmincon function? MikeCroucher 2008-09-16T09:45:06Z 2008-09-16T09:45:06Z <p>The open source Python package,<a href="http://www.scipy.org/" rel="nofollow">SciPy</a>, has quite a large set of optimization routines including some for multivariable problems with constraints (which is what fmincon does I believe). Once you have SciPy installed type the following at the Python command prompt</p> <p>help(scipy.optimize)</p> <p>The resulting document is extensive and includes the following which I believe might be of use to you.</p> <pre><code> Constrained Optimizers (multivariate) fmin_l_bfgs_b -- Zhu, Byrd, and Nocedal's L-BFGS-B constrained optimizer (if you use this please quote their papers -- see help) fmin_tnc -- Truncated Newton Code originally written by Stephen Nash and adapted to C by Jean-Sebastien Roy. fmin_cobyla -- Constrained Optimization BY Linear Approximation </code></pre> http://stackoverflow.com/questions/49926/open-source-alternative-to-matlabs-fmincon-function/196806#196806 6 Answer by onalark for Open source alternative to matlab's fmincon function? onalark 2008-10-13T05:51:51Z 2008-10-13T05:51:51Z <p>Is your problem convex? Linear? Non-linear? I agree that SciPy.optimize will probably do the job, but fmincon is a sort of bazooka for solving optimization problems, and you'll be better off if you can confine it to one of the categories below (in increasing level of difficulty to solve efficiently)</p> <p>Linear Program (LP) Quadratic Program (QP) Convex Quadratically-Constrained Quadratic Program (QCQP) Second Order Cone Program (SOCP) Semidefinite Program (SDP) Non-Linear Convex Problem Non-Convex Problem</p> <p>There are also combinatoric problems such as Mixed-Integer Linear Programs (MILP), but you didn't mention any sort of integrality constraints, suffice to say that they fall into a different class of problems.</p> <p>The CVXOpt package will be of great use to you if your problem is convex. </p> <p>If your problem is not convex, you need to choose between finding a local solution or the global solution. Many convex solvers 'sort of' work in a non-convex domain. Finding a good approximation to the global solution would require some form Simulated Annealing or Genetic Algorithm. Finding the global solution will require an enumeration of all local solutions or a combinatorial strategy such as Branch and Bound.</p> http://stackoverflow.com/questions/49926/open-source-alternative-to-matlabs-fmincon-function/444167#444167 0 Answer by mathias for Open source alternative to matlab's fmincon function? mathias 2009-01-14T18:38:44Z 2009-01-14T18:44:21Z <p>have a look at <a href="http://www.aemdesign.com/downloadfsqp.htm" rel="nofollow">http://www.aemdesign.com/downloadfsqp.htm</a></p> <p>there you will find a c-code which provides the same functionality as fmincon. (however, using a different algorithm. you can read the manual if you are interested in the details.)</p> <p>it's open source but not under GPL. </p> http://stackoverflow.com/questions/49926/open-source-alternative-to-matlabs-fmincon-function/765053#765053 1 Answer by Joker for Open source alternative to matlab's fmincon function? Joker 2009-04-19T08:10:36Z 2009-04-19T08:10:36Z <p>For numerical optimization in Python you may take a look at OpenOpt solvers:</p> <p><a href="http://openopt.org/NLP" rel="nofollow">http://openopt.org/NLP</a></p> <p><a href="http://openopt.org/Problems" rel="nofollow">http://openopt.org/Problems</a></p>