필터 지우기
필터 지우기

solve an inequality with LMI approach

조회 수: 16 (최근 30일)
haifa
haifa 2014년 2월 1일
댓글: Johan Löfberg 2014년 2월 5일
I would like to solve this inequality :
Q*A'+A*Q+L'*B'+B*L < 0
  댓글 수: 7
Matt J
Matt J 2014년 2월 5일
Does L<0 mean that L(i,j)<0 for all i,j ?
haifa
haifa 2014년 2월 5일
no,L is a negativ matrix

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

답변 (1개)

Johan Löfberg
Johan Löfberg 2014년 2월 5일
편집: Johan Löfberg 2014년 2월 5일
With the MATLAB Toolbox YALMIP, and some SDP solver installed (such as SDPT3, SeDuMi, Mosek etc) it would be (you have not clearly said which variables are decision variables, I assume Q (psd) and L (arbitrary))
Q = sdpvar(n,n);
L = sdpvar(m,n,'full');
Constraints = [Q >=0, Q*A'+A*Q+L'*B'+B*L <= 0];
solvesdp(Constraints);
The model is ill-posed though as Q and L arbitrarily close to zero is feasible, which means trouble in practice. Dehomogenioze it, for instance
Constraints = [Q >=0, Q*A'+A*Q+L'*B'+B*L <= -eye(n)];
  댓글 수: 3
haifa
haifa 2014년 2월 5일
I have not this solver SDP
Johan Löfberg
Johan Löfberg 2014년 2월 5일
You have to install a solver (and YALMIP).

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

카테고리

Help CenterFile Exchange에서 LMI Solvers에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by