YALMIP
YALMIP copied to clipboard
S-procedure filter fails with norm definition
n=2;
zeta = sdpvar(n,1);
A = sdpvar(n,n);
F = [uncertain(zeta); norm(zeta) <= 0.05];
F = F + [zeta'*A*zeta >= 1];
optimize(F,A(1,1));