Maximize linear programming using linprog

6 Ansichten (letzte 30 Tage)
Swera Vapoil
Swera Vapoil am 10 Apr. 2017
Kommentiert: Stanislav Kubis am 5 Mär. 2022
I have to maximize the function given below: f(x,y) = 150x+175y; subject to
7x + 11y<=77;
10x + 8y<=80;
x>=9;
y<=6;
x>=0;
y>=0;
I tried to find out the value using linprog() function, but i am getting some absurd values:
[X,val]=linprog([-150 -175],[7 11;10 8;1 0;0 1],[77;80;9;6],[],[],[0 0]);
X =
4.8889
3.8889
val =
-1.4139e+03
Where did i go wrong? Any help would be really appreciated.

Akzeptierte Antwort

Torsten
Torsten am 11 Apr. 2017
[X,val]=linprog([-150 -175],[7 11;10 8;-1 0;0 1],[77;80;-9;6],[],[],[0 0],[Inf Inf]);
Best wishes
Torsten.
  1 Kommentar
Stanislav Kubis
Stanislav Kubis am 5 Mär. 2022
Great comment! I would only add that the minus is for the equations as the function is trying to maximize but the contraints are still having the wrong sign.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by