How to get feasible value?

I am doing a feasibility test on an LMI. CVX gives feasible. But I want to know the feasible values of the variables involved in the LMI. Is there any command to do this in CVX. Like in LMItoolbox there is a command “dec2mat” to get the feasible values.
This is the LMI i am working on and P is the variable matrix [P -A’P;-PA P] >= -eye(2*n)
P >= eye(n)

Why not just examine the variables? EDIT: You’ve changed your question, but my question remains the same: why not just look at P?

It is not clear to me what do you mean by “Look at P”

After the problem is solved, type “P” on the Matlab command line.

Thanks I got it.