Quadratically bounded quadratic programming in R

Is there a function in R that optimizes with quadratic constraints?

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

+4
source share
4 answers
+2
source

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

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

Keep in mind that

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

There are online links illustrating how to formulate QCQP as SOCP or PSD

+2
source

For reference only.

There is a new ECOSolveR package for SOCP

+1
source

You might want to try the quadprog package: functions for solving quadratic programming problems.

http://cran.r-project.org/web/packages/quadprog/index.html

0
source

All Articles