Hi,
I am facing an issue with writing an LMI in Matlab with Yalmip toolbox.
Following is the LMI (Please see the Page 3 in attached paper):

As it can be observed, there are three decision variables
1. Q is greater than zero.
2. U is a diagonal matrix and is greater than zero.
3. L, there is no condition on L, so I assumed it as a 'full' matrix in sdpvar.
4. there is a scaler gamma, which is also greater than zero.
After solving this, my problem become infeasible. I think there is something wrong with my LMI writing.
- Can I have any suggestion how to put the hermitian condition around the LMI matrix.
- Is there any fault in my LMI Code below:
This is the code:
Q=sdpvar(6,6,'full');
U=sdpvar(2,2,'diagonal');
L=sdpvar(2,6,'full');
gamma=sdpvar(1);
F1=[A*Q+B*L B*U zeros(6,2) zeros(6,2);
-L -U eye(2,2) zeros(2,2);
zeros(2,6) zeros(2,2) (-gamma/2)*eye(2,2) zeros(2,2);
C*Q+D*L D*U zeros(2,2) (-gamma/2)*eye(2,2)];
Constraints=[U>=0.000000001*eye(2,2),Q>=0.00000000001*eye(nx,ny),gamma>=0.0000000001,F1<=0.00000000001*eye(12,12)];
options = sdpsettings('savesolveroutput',1,'verbose',1,'solver','sdpt3');
sol = optimize(Constraints,gamma,options);
Thank you
Kind Regards