scs

Syntax

scs(f, [P], [A], [b], [Aeq], [beq], [lb], [ub], [x0], [c], [eps], [alpha])

Details

Solve the following optimization problem for the objective function with given constraints:

\(\min\limits_{x} x^TPx+f^Tx\text{ such that}\begin{cases}A\cdot x\le b\\Aeq\cdot x=beq\\norm(x-x_0) \le c\\lb\le x\le ub\end{cases}\)

The result is a 2-element tuple. The first element is the minimum value of the objective function. The second element is the value of x when the value of the objective function is minimized.

Arguments

Note: Among the following parameters, only lb and ub can be empty, while all other parameters must not contain NULL values.

f is a vector of coefficients for linear terms in the quadratic programming problem. It must be of the same length as x0.

p is a matrix obtained by multiplying the diagonal elements of the coefficient matrix for quadratic terms by 2. For example, to obtain matrix p, form an upper triangular matrix based on all the quadratic terms:

../../../_images/scs02.png

A is a coefficient matrix for linear inequality constraints. Its number of columns must be consistent with the size of x.

b is the right-hand vector for linear inequality constraints.

Aeq is a coefficient matrix for linear equality constraints. Its number of columns must be consistent with the size of x.

beq is the right-hand vector for linear equality constraints.

lb / ub is a scalar or a vector of the same length as x, specifying the lower/upper bounds for variables.

  • If lb or ub is a scalar, all variables are subject to the same lower or upper bound constraints. If lb or ub is NULL, there are no lower or upper bound constraints for x.

  • If lb or ub is a vector, the elements of x are subject to the corresponding elements of lb or ub. If a certain element in lb or ub is NULL, the corresponding element in x has no lower or upper bound constraint.

x0 is a vector of coefficients for absolute value inequality constraints.

c is a non-negative number representing the right-hand constant for absolute value inequality constraints.

eps is a positive floating-point number representing the solution precision. The default value is 1e-6, and the range is [1e-4, 1e-9]. A solution with higher precision can be obtained by decreasing eps. If a value beyond the range is set, it will be adjusted to the default value.

alpha is a positive floating-point number representing the relaxation parameter. The default value is 1.5, and the range is (0,2). The solution process can be sped up by increasing alpha. If a value beyond the range is set, it will be adjusted to the default value.

Examples

Find x and y that satisfy the following constraints and minimize the objective function x^2 + y^2:

../../../_images/scs03.png
// No linear terms in the objective function, so all coefficients are 0, and f takes the following values
$ f = [0, 0];
// Only quadratic terms x^2 and y^2 exist with coefficients as 1, so p takes the following values
$ P = [2, 0, 0, 2]$2:2;
// Coefficients and right-hand vector for absolute value inequality constraints
$ x0 = [0.4, 0.6];
$ c = 0.5;
// Linear equality constraint x + y = 1, so Aeq and beq take the following values
$ Aeq = [1, 1]$1:2;
$ beq = [1];
// Since x, y > 0, we have lower bounds for variables as follows:
$ lb = [0, 0];
$ re = scs(f=f,P=P,Aeq=Aeq,beq=beq,lb=lb,x0=x0,c=c);
$ re[1]
[0.500000043984074,0.499999955746447]

Related functions: linprog, quadprog