Hello,
I am facing a problem with the solution of an LMI.
Following is the LMI along with its detail.

Where,
A(hat) = State matrix (it is of the size 6x6 in my case)
B(hat) = input matrix (it is of the size 6x2 in my case)
1. Lyapunov matrices:
P = PT > 0 (as you can see it is symmetrical)
2. There are two slack variables:
G and Y
3. a positive scaler:
e(epsilon) > 0
Problem:
I tried to solve this LMI, but I think there might be a problem with my approach. I tried almost every solver i.e., sdpt3, mosek, fmincon, sedumi etc. Every time it says, "solver not applicable".
Here is my approach to solve this problem:
Code:
P=sdpvar(nx,nx,'symmetric'); %6x6
G=sdpvar(nx,nx,'full'); %6x6 Slack Variable
Y=sdpvar(nu,nx,'full'); %6x2 Slack Variable
e=sdpvar(1); %A scaler
%This is the LMI
F1 = [Ahat*G+G'*Ahat'+Bhat*Y+Y'*Bhat' (P-G+e*(G'*Ahat'+Y'*Bhat'))';
P-G+e*(G'*Ahat'+Y'*Bhat') -e*(G+G')];
Constraints = [e>=0.0000000001*1 F1<=.00000000001 -P<=0.000000001];
options = sdpsettings('savesolveroutput',1,'verbose',1,'solver','mosek','debug',1);
optimize(Constraints,e,options);
I would be grateful to you, if you can identify my fault in the above approach.
Kind Regards
Abdur Rehman.