Skip to content
Advertisement

Python: porting to cvxopt quadratic programming from MATLAB’s quadprog

I am porting a MATLAB script to Python that uses the quadprog function. The best equivalent seems to be qp. I can work out the equivalent notation with the doc and a bit of time, but I’m lazy and it would be nice to just copy-paste some code instead of thinking about it. So:

  • Which of the parameters in the two functions are equivalent?
  • How do I incorporate the upper and lower bounds from quadprog into cvxopt.solvers.qp?

I’ve already read this related question but I’m even lazier than that.

Advertisement

Answer

This is a silly question you goose, but since there might be more lazy people around, take this line of MATLAB code (using numbered parameters for readability):

JavaScript

The equivalent in Python will be:

JavaScript

Assuming that you’ve been working with numpy.arrays. If you’ve been using matrices, check this doc to find this formulation for G and h:

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement