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)
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!发生错误
由于页面发生更改,无法完成操作。请重新加载页面以查看其更新后的状态。
您也可以从以下列表中选择网站:
如何获得最佳网站性能
选择中国网站(中文或英文)以获得最佳网站性能。其他 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 (한국어)