Use the structure return form of solve and then extract by structure field name into the variables you want.
Order of variables in SOLVE
4 次查看(过去 30 天)
显示 更早的评论
clear all
syms x y l1 l2 l3 %%Generate symb var for multipliers
v=[x y l1 l2 l3];
g1=(y-3)/sqrt((x-2)^2+(y-3)^2)+l1+l2-l3; %%Gradient condition
g2=(x-2)/sqrt((x-2)^2+(y-3)^2)+l1;
cs1=l1(x+y); %%Complementary slackness conditions
cs2=l2*(x-2);
cs3=l3*(x+2);
[x, y, l1, l2, l3] = solve(g1==0,g2==0,cs1==0,cs2==0,cs3==0, x, y, l1,...
l2, l3);
sol=[x, y, l1, l2, l3];
I have this KKT system. Other times when I used the solve command I noticed that in the solution matrix the variables are not reported in the specified order.
How do I make sure that in the sol matrix the variable are the right one (without checking manually, that is).
In the example above, having the solutions, I can see that into sol x,y are the two rightmost columns. If I switch like this
[ l1, l2, l3, *x, y,*] = solve(g1==0,g2==0,cs1==0,cs2==0,cs3==0, x, y, l1,...
l2, l3);
then everything goes ok. I need to now why this happens in order not to make this mistake again when I don't have solutions. Thanks
0 个评论
采纳的回答
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Symbolic Math Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!