Equality constraint in quadratic programming

조회 수: 2 (최근 30일)
Muhammad Kundi
Muhammad Kundi 2019년 10월 9일
댓글: Muhammad Kundi 2019년 10월 10일
hi,
I have written the following code:
Q=[2 1 0;1 4 0 ; 1 0 6];
c=[1;-2 ;4];
A=[3 4 -2; 3 -2 -1];
b =[10; -2];
Aeq = [2 3 4];
beq=[5]
LB=[0;0;0];
UB=[5;5;5];
[x, fval, exitflag, output, lambda]=quadprog(Q,c,A,b,Aeq,beq,LB,UB);
Am I doing the right procedure?
I am getting value of x1=0.0000 ...Is it ok

채택된 답변

Bruno Luong
Bruno Luong 2019년 10월 9일
편집: Bruno Luong 2019년 10월 9일
Yes, il looks right to me.
EDIT:
No Q(3,1) must be 0
Q=[2 1 0;
1 4 0 ;
0 0 6]

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Get Started with Optimization Toolbox에 대해 자세히 알아보기

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by