[X,Y] = meshgrid(-1:0.011:1);
spy(max(abs(X),abs(Y))./min(abs(X),abs(Y)) <= 2)
n = 20; A = randn(n);A = A*A'; B = randn(n/2,n); x = sdpvar(n,1); solvesdp([B*x <= -1,-10 <= x <= 10, max(abs(x))<= 2*min(abs(x))],x'*A*x)
max(abs(x))<= C*min(abs(x))) that using a huge C?
Because I do not get the same results
(not even close)
.
I do not get better results with bigger C, and I do not understand why. I should get better results if I am allowing more degrees of freedom to the problem.
Thanks