solve an inequality with LMI approach

I would like to solve this inequality :
Q*A'+A*Q+L'*B'+B*L < 0

댓글 수: 7

Amit
Amit 2014년 2월 1일
solve for what? What the variable, what is known?
John D'Errico
John D'Errico 2014년 2월 1일
Obviously, the poster wants to solve for x. Oh, x is not in the equation? So we can choose x=0. Case closed.
Seriously, before you ask a question, think about what you mean by it. What are the unknowns here? What are the knowns? Are they arrays? vectors? Scalars? What size? What do you mean by "solve", as that is not a terribly meaningful thing in terms of an inequality, as there will generally be infinitely many solutions to such a problem.
Once you define your problem, it MIGHT be possible to help you, but until then, impossible. Even then, solving an inequality is, as I said, generally not a well-posed problem.
haifa
haifa 2014년 2월 4일
the variables are the two matrix Q and L: Q: symetric matrix >0 L < 0
Matt J
Matt J 2014년 2월 4일
And the inequality < 0 is element-wise, or is it the positive semi-definite ordering?
haifa
haifa 2014년 2월 5일
Q :is a symetric and semi definite positive L: <0
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일

1 개 추천

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 try to find the matrix Q:symetric and semi definite positive, and the negativ matrix L, which satisfy this inequality: Q*A'+A*Q+L'*B'+B*L < 0 knowing that: A=[0 1;0 0];B=[0;1];
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).

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

카테고리

질문:

2014년 2월 1일

댓글:

2014년 2월 5일

Community Treasure Hunt

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

Start Hunting!

Translated by