Filter löschen
Filter löschen

Find an optimal solution for a system with matrix

3 Ansichten (letzte 30 Tage)
Imane hammou ouali
Imane hammou ouali am 7 Dez. 2019
Bearbeitet: Matt J am 9 Dez. 2019
Hello exper,
I have a marix A=[0.8 0 ; 1 0.8] that i should maximize its elements : Max sum(A)
I have like Contraints sum(B)<= 4 , and B is a matrix B=[1 0 ;2 2]
an other constraint sum(C)<=3 , and C is a matrix C=[1 0 ;1 1]
I will be very grateful if you can help me
  3 Kommentare
Imane hammou ouali
Imane hammou ouali am 7 Dez. 2019
i want to maximize the sum of matrix A ,
its just like max ( 0.8x(1,1)+0 x(1,2)+ 1x(2,1)+0.8x(2,2) )
1x(1,1)+0 x(1,2)+ 2x(2,1)+2x(2,2) <=4
x(1,1)+0 x(1,2)+ 1x(2,1)+1x(2,2)<=3
Matt J
Matt J am 9 Dez. 2019
Note that x(1,2) has coefficient 0 in both the objective and constraints. It may as well not participate in the problem.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Matt J
Matt J am 8 Dez. 2019
f=-A(:);
Aineq=[B(:),C(:)].';
bineq=[4;3]
Xoptimal=linprog(f,Aineq,bineq)
  2 Kommentare
Imane hammou ouali
Imane hammou ouali am 8 Dez. 2019
Thank your for answering.But this is the result generated in matlab :
Xoptimal =
[]
any help please
Matt J
Matt J am 9 Dez. 2019
Bearbeitet: Matt J am 9 Dez. 2019
The problem is unbounded and has no finite solution. You need more constraints. If I assume all the X(i) are meant to be non-negative, then we get the following solution,
>> Xoptimal=linprog(f,Aineq,bineq,[],[],[0 0 0 0]);
>> reshape(Xoptimal,2,2)
ans =
2.0000 0
1.0000 0
Note that X(1,2) can really be chosen as any non-negative value since it does not contribute to the problem, as I mentioned above.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Get Started with Optimization Toolbox finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by