What is the UB and LB in the following solver based approch optimisation question

조회 수: 9 (최근 30일)
Minimize f = 2x1 + 3x2 + 2x3-X4 + X5
subject to the constraints
3x1 - 3x2 + 4x3 + 2x4 - X5 = 0
X1 + x2 + x3 + 3x4 + x5= 2
x/ 20, i = 1 to 5
  댓글 수: 5

댓글을 달려면 로그인하십시오.

답변 (1개)

Abolfazl Chaman Motlagh
Abolfazl Chaman Motlagh 2021년 9월 10일
your upper bound is infinity , lower bound is zeros:
f = [2;3;2;-1;1];
Aeq = [3 -3 4 2 -1;1 1 1 3 1];
beq = [0;2];
lb = zeros(5,1);
ub = inf(5,1);
[X,feval] = linprog(f,[],[],Aeq,beq,lb,ub)
Optimal solution found.
X = 5×1
0 0 0 0.4000 0.8000
feval = 0.4000

카테고리

Help CenterFile Exchange에서 Solver Outputs and Iterative Display에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by