Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Quadratically constrained quadratic programming in R

Is there a function in R that does optimization with quadratic constraints?

Reference: http://en.wikipedia.org/wiki/Quadratically_constrained_quadratic_program

like image 452
user236215 Avatar asked Sep 07 '11 05:09

user236215


People also ask

Which is solvable by quadratic programming?

Quadratic programming (QP) is the process of solving certain mathematical optimization problems involving quadratic functions. Specifically, one seeks to optimize (minimize or maximize) a multivariate quadratic function subject to linear constraints on the variables.

What is mixed integer quadratic programming?

Mixed-integer quadratic programming (MIQP) is the problem of optimizing a quadratic function. over points in a polyhedral set that have some components integer, and others continuous.

What is quadratic programming problem in operational research?

Quadratic programming (QP) is the problem of optimizing a quadratic objective function and is one of the simplests form of non-linear programming. 1 The objective function can contain bilinear or up to second order polynomial terms,2 and the constraints are linear and can be both equalities and inequalities.


2 Answers

You should look through your options at the CRAN Optimization and Mathematical ProgrammingTask View.

like image 153
IRTFM Avatar answered Sep 25 '22 03:09

IRTFM


Yes, there are several software packages that can solve QCQPs.

CLSOCP solves SOCP problems. DWD also solves SOCP problems. Rcsdp solves SDP problems.

Keep in mind that

QCQPs are a subset of SOCPs, which in turn are a subset of SDPs.

There are references online illustrating how to formulate a QCQP as an SOCP or SDP

like image 26
MichaelJ Avatar answered Sep 23 '22 03:09

MichaelJ