Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Robustify fails when using norm #123

Open
johanlofberg opened this issue Aug 6, 2013 · 1 comment
Open

Robustify fails when using norm #123

johanlofberg opened this issue Aug 6, 2013 · 1 comment

Comments

@johanlofberg
Copy link
Member

zeta = sdpvar(2,1);
w = sdpvar(2,1);  
F = [uncertain(zeta); norm(zeta) <= 1];  
F = F + [w'*zeta*(zeta) <= 1];
[Frobust,robust_objective] = robustify(F);
@ghost ghost assigned johanlofberg Aug 6, 2013
@johanlofberg
Copy link
Member Author

This one too (test_tobust_10)

yalmip('clear')
w = sdpvar(2,1);
sdpvar t
 W1 = [norm(w,1)<=1];
W2 = [norm(w,inf)<=1/p];
[H,tt,y] = hull(W1,W2);
solvesdp([uncertain(w),H,a'*w<=t],t)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant