I'm having a problem trying to use YALMIP (https://yalmip.github.io/?n=Main.HomePage); I want to solve an LMI with Yalmip Here's the code:
but it returns :
why and how can I solve this problem? and another question: when I used plot(L) it only shows the final answer, how can I plot all principal minors of it? |
L = [1-x1 x1+x2 x1; x1+x2 2-x2 0; x1 0 1+x2] >= 0plot(L)optimize(L)
value([x1 x2])