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

14 vues (au cours des 30 derniers jours)
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

Réponse acceptée

Matt J
Matt J le 6 Nov 2019
Modifié(e) : Matt J le 6 Nov 2019
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 commentaires
Matt J
Matt J le 21 Nov 2019
Modifié(e) : Matt J le 21 Nov 2019
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)
mohamed Faraj
mohamed Faraj le 21 Nov 2019
It works now with @. Thank you.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Get Started with Optimization Toolbox dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by