How to get feasible value?

Uncategorized
May 10, 2013
S

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)

M

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

S

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

M

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

S

Thanks I got it.