A question on problem scale
Hi everyone,
I use the following code solving a simple SDP:
A = rand(n,n);
P = sdpvar(n,n);
F = [P >= 0];
options = sdpsettings('solver','sedumi');
solvesdp(F,norm(P - A,1),options);
The above codes seems to work well when n == 10. However it halts with some error messages if n == 100. Why?
In addition, if we use a $l_2^2$ norm (ie.,(norm(P - A,2))^2) as the objective function, the model can not work at all. Why?
Thank you in advance for your replies.