The best way to write a large number of constraints for an optimization problem

조회 수: 15 (최근 30일)
Hi All,
I have an optimization problem which have a larger number of variables, probably 10000 optimization variables and a large number of constraints. The optimization problem is mixed integer convex problem. What is the best way to define the large number of constraints?. Can I use loops like the ones used in CVX to define constraints?. I have matlab 2013a.
Thank you

채택된 답변

Matt J
Matt J 2019년 11월 6일
편집: Matt J 2019년 11월 6일
If they are linear constraints, they will be expressed using matrix-vector multiplication
A*x<=b
Aeq*x<=beq
so any vectorized method for building the A, Aeq, b, beq, matrices would be appropriate. Similarly, nonlinear constraints in Matlab are expressed using user-defined constraint functions of the following form
function [cineq,ceq]=nonlcon(x)
....
end
where cineq and ceq are vectors of inequality and equality constraint violations, respectively. When the number of variables or constraints is large, you would use vectorized Matlab commands to generate cineq and ceq from x.
  댓글 수: 5
Matt J
Matt J 2019년 11월 21일
편집: Matt J 2019년 11월 21일
When I run the code
Code you haven't shown, so it's anybody's guess what's wrong with it....
However, my guess would be that your call to fmincon looks like this
fmincon(_____,nonlcon)
instead of this
fmincon(_____,@nonlcon)

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Get Started with Optimization Toolbox에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by