Thanks a lot for your soon answer.
You right E is singular, and considering the first approach
X = sdpvar(8);
Con= [X>=0, X==Ee'*Pe];
the solver almost works, however the solution is very close to zero, and the following message appears, "Numerical problems ".
with respect to second expression that becomes unfeasible
solvesdp([Ee'*Pe+(Ee'*Pe)' >= eye(8)])
where Pe=[P1 0 ; 0 P2], P1, P2 are sdpvar objects. Even when this symmetric expression is not used in other part, the problem is that Pe is formed by P1 and P2, which are used in the rest of the set of LMIs. So, I do not known how to rewrite this expression.