現在この質問をフォロー中です
- フォローしているコンテンツ フィードに更新が表示されます。
- コミュニケーション基本設定に応じて電子メールを受け取ることができます。
How to write code for Assignment problem using GA matlab tool.
3 ビュー (過去 30 日間)
古いコメントを表示
How to write code for Assignment problem using GA matlab tool.I'm not sure how to write code for xij=0 or 1.
Please clarify my doubt. Thanks in advance.
回答 (1 件)
John D'Errico
2022 年 6 月 19 日
Does GA allow you to specify that some variables are integer? (Yes.)
Does GA allow you to specify lower and upper bound limits on the variables? (Yes.)
Which integers lie in the closed interval [0,1]? (I'll let you answer that.)
11 件のコメント
buvaneshwari tk
2022 年 6 月 19 日
ObjectiveFunction = @myffapalpha0;
lb = [0 0]; % Lower bounds
ub = [100 100]; % Upper bounds
ConstraintFunction = @simple_constraintffap;
nvars = 16;
rng default % For reproducibility
[x,fval] = ga(ObjectiveFunction,nvars,[],[],[],[],lb,ub,ConstraintFunction)
buvaneshwari tk
2022 年 6 月 19 日
where and how to write code for all the variables are in 1 (xij=0 or 1)?
Sam Chak
2022 年 6 月 19 日
Not an expert in operations research, but I do hope the Example and MATLAB code in the following link help:
John D'Errico
2022 年 6 月 19 日
編集済み: John D'Errico
2022 年 6 月 19 日
First, you cannot simultaneously maximize AND minimize two different objectives, using an optimization tool.
You cannot simultaneuously optimize two separate things at once. Except that you can, but you need to use ideas from the field of multi-criteria optimization. In MATLAB, there is the tool fgoalattain, except that it cannot handle integer constraints.
Next, as pointed out by @Sam Chak, this is a linear problem, except that you cannot use a tool like intlinprog to solve that problem. (You would want intlinprog, because of the integer constraints. linprog has no ability to solve integer problems.)
Finally, since you have only 16 total variables, each of which can take on only two values, the simplest solution is to just evaluate the objectives for all possible sets of the parameters. That would look as if you have 65536=2^16 possible combinations. But as importantly, the constraints make it obvious that in fact, you don't have that many ways to do this. In fact, your constraints force this to be a problem where all of the matrices must be permutation matrices. There are only 24 possible 4x4 permutation matrices. We can find all 24 of them as permutations of the 4x4 identity matrix. So start with the 4x4 identity.
X = eye(4);
PermsList = perms(1:4)
PermsList = 24×4
4 3 2 1
4 3 1 2
4 2 3 1
4 2 1 3
4 1 3 2
4 1 2 3
3 4 2 1
3 4 1 2
3 2 4 1
3 2 1 4
As I said, 24 of them. We can find all admissable permutations as:
X = permute(reshape(X(PermsList,:),[24 4 4]),[2 3 1]);
For example, one such admissable permutation is:
X(:,:,5)
ans = 4×4
0 0 0 1
1 0 0 0
0 0 1 0
0 1 0 0
As you can see, each of them satisfy all of your constraints.
X
X =
X(:,:,1) =
0 0 0 1
0 0 1 0
0 1 0 0
1 0 0 0
X(:,:,2) =
0 0 0 1
0 0 1 0
1 0 0 0
0 1 0 0
X(:,:,3) =
0 0 0 1
0 1 0 0
0 0 1 0
1 0 0 0
X(:,:,4) =
0 0 0 1
0 1 0 0
1 0 0 0
0 0 1 0
X(:,:,5) =
0 0 0 1
1 0 0 0
0 0 1 0
0 1 0 0
X(:,:,6) =
0 0 0 1
1 0 0 0
0 1 0 0
0 0 1 0
X(:,:,7) =
0 0 1 0
0 0 0 1
0 1 0 0
1 0 0 0
X(:,:,8) =
0 0 1 0
0 0 0 1
1 0 0 0
0 1 0 0
X(:,:,9) =
0 0 1 0
0 1 0 0
0 0 0 1
1 0 0 0
X(:,:,10) =
0 0 1 0
0 1 0 0
1 0 0 0
0 0 0 1
X(:,:,11) =
0 0 1 0
1 0 0 0
0 0 0 1
0 1 0 0
X(:,:,12) =
0 0 1 0
1 0 0 0
0 1 0 0
0 0 0 1
X(:,:,13) =
0 1 0 0
0 0 0 1
0 0 1 0
1 0 0 0
X(:,:,14) =
0 1 0 0
0 0 0 1
1 0 0 0
0 0 1 0
X(:,:,15) =
0 1 0 0
0 0 1 0
0 0 0 1
1 0 0 0
X(:,:,16) =
0 1 0 0
0 0 1 0
1 0 0 0
0 0 0 1
X(:,:,17) =
0 1 0 0
1 0 0 0
0 0 0 1
0 0 1 0
X(:,:,18) =
0 1 0 0
1 0 0 0
0 0 1 0
0 0 0 1
X(:,:,19) =
1 0 0 0
0 0 0 1
0 0 1 0
0 1 0 0
X(:,:,20) =
1 0 0 0
0 0 0 1
0 1 0 0
0 0 1 0
X(:,:,21) =
1 0 0 0
0 0 1 0
0 0 0 1
0 1 0 0
X(:,:,22) =
1 0 0 0
0 0 1 0
0 1 0 0
0 0 0 1
X(:,:,23) =
1 0 0 0
0 1 0 0
0 0 0 1
0 0 1 0
X(:,:,24) =
1 0 0 0
0 1 0 0
0 0 1 0
0 0 0 1
Now you could merely loop through every possible plane of that array. Test them all, taking the one that makes you happy.
Regardless, you will still need to decide how to simultaneously choose between two disparate objectives, because the set that optimizes one will not be the set that optimizes the other. You will need to decide how to combine the two objectives into one.
Would you want to use GA to do this? Why in the name of god and little green apples would you do that, or even use intlinprog, when there are only 24 such possible matrices to consider?
buvaneshwari tk
2022 年 6 月 19 日
ObjectiveFunction = @myffapalpha0;
lb = [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]; % Lower bounds
ub = [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]; % Upper bounds
ConstraintFunction = @simple_constraintffap;
intcons = [];
options = [];
nvars = 16;
rng default % For reproducibility
[x,fval] = ga(ObjectiveFunction,nvars,[],[],[],[],lb,ub,ConstraintFunction,intcons,options)
buvaneshwari tk
2022 年 6 月 19 日
For this code i get the values of varibles in between 0 and 1.
i want the value of variable in 0 or 1.
Torsten
2022 年 6 月 19 日
For this code i get the values of varibles in between 0 and 1.
i want the value of variable in 0 or 1.
To achieve this, set
intcons = 1:16
And better use intlinprog instead of ga - it will be way faster.
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!エラーが発生しました
ページに変更が加えられたため、アクションを完了できません。ページを再度読み込み、更新された状態を確認してください。
Web サイトの選択
Web サイトを選択すると、翻訳されたコンテンツにアクセスし、地域のイベントやサービスを確認できます。現在の位置情報に基づき、次のサイトの選択を推奨します:
また、以下のリストから Web サイトを選択することもできます。
最適なサイトパフォーマンスの取得方法
中国のサイト (中国語または英語) を選択することで、最適なサイトパフォーマンスが得られます。その他の国の MathWorks のサイトは、お客様の地域からのアクセスが最適化されていません。
南北アメリカ
- América Latina (Español)
- Canada (English)
- United States (English)
ヨーロッパ
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom(English)
アジア太平洋地域
- Australia (English)
- India (English)
- New Zealand (English)
- 中国
- 日本Japanese (日本語)
- 한국Korean (한국어)