Solves a linear quadratic problem.
xopt = qpipopt(nbVar,nbCon,H,f,lb,ub,A,conLB,conUB) xopt = qpipopt(nbVar,nbCon,H,f,lb,ub,A,conLB,conUB,x0) xopt = qpipopt(nbVar,nbCon,H,f,lb,ub,A,conLB,conUB,x0,param) [xopt,fopt,exitflag,output,lamda] = qpipopt( ... )
a double, number of variables
a double, number of constraints
a symmetric matrix of double, represents coefficients of quadratic in the quadratic problem.
a vector of double, represents coefficients of linear in the quadratic problem
a vector of double, contains lower bounds of the variables.
a vector of double, contains upper bounds of the variables.
a matrix of double, contains the constraint matrix
a vector of double, contains lower bounds of the constraints.
a vector of double, contains upper bounds of the constraints.
a vector of double, contains initial guess of variables.
a list containing the parameters to be set.
a vector of double, the computed solution of the optimization problem.
a double, the value of the function at x.
The exit status. See below for details.
The structure consist of statistics about the optimization. See below for details.
The structure consist of the Lagrange multipliers at the solution of problem. See below for details.
Search the minimum of a constrained linear quadratic optimization problem specified by :
The routine calls Ipopt for solving the quadratic problem, Ipopt is a library written in C++.
The exitflag allows to know the status of the optimization which is given back by Ipopt.
For more details on exitflag see the ipopt documentation, go to http://www.coin-or.org/Ipopt/documentation/
The output data structure contains detailed informations about the optimization process. It has type "struct" and contains the following fields.
The lambda data structure contains the Lagrange multipliers at the end of optimization. In the current version the values are returned only when the the solution is optimal. It has type "struct" and contains the following fields.
//Find x in R^6 such that: A= [1,-1,1,0,3,1; -1,0,-3,-4,5,6; 2,5,3,0,1,0 0,1,0,1,2,-1; -1,0,2,1,1,0]; conLB=[1;2;3;-%inf;-%inf]; conUB = [1;2;3;-1;2.5]; lb=[-1000;-10000; 0; -1000; -1000; -1000]; ub=[10000; 100; 1.5; 100; 100; 1000]; //and minimize 0.5*x'⋅H⋅x + f'⋅x with f=[1; 2; 3; 4; 5; 6]; H=eye(6,6); nbVar = 6; nbCon = 5; x0 = repmat(0,nbVar,1); param = list("MaxIter", 300, "CpuTime", 100); [xopt,fopt,exitflag,output,lambda]=qpipopt(nbVar,nbCon,H,f,lb,ub,A,conLB,conUB,x0,param) |