How to define constraints that result integer numbers in Linear programming?
6 ビュー (過去 30 日間)
古いコメントを表示
Hello,
i need define the constraints in my linear programming problem, the constraints need to be integer numbers.
e.g.:
f = [28;31].*-1;
A = [3.5 4];
b = [50];
lb = [0;0];
x = linprog(f,A,b,[],[],lb,[])
x = [14.5 0]
if the constraint was integer the value of x become [12 2].
Thank you in advance.
0 件のコメント
採用された回答
Shashank Prasanna
2013 年 7 月 16 日
Mixed Integer constraints is currently not possible with linprog. If you have the global optimization toolbox, you can use GA to solve the problem:
If you don't then you can surely find something in File Exchange:
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Linear Programming and Mixed-Integer Linear Programming についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!