Dear Professor Löfberg and Yalmip users,
I am trying to solve a quadratic constraint in Yalmip. When I don't put it in Conic Representable form, I can only solve it via Knitro. I want to use Mosek, so I convert the model to a Conic Representable one. I get the following error:
Warning: Solver not applicable (mosek)
Shall I write with sqrt(.) <= something? Because now I am using norm([f(x);g(x)],2)<=d(x) form.
Just in case, I am pasting the relevant part of the constraint and the code:

tau = sdpvar(1,1);
u = sdpvar(2,1);
V = sdpvar(2,2);
r = sdpvar(2,1);
Objective = tau;
Constraints = [norm([(1+r(1)+r(2)+u(1)+u(2)-tau)/(2+2*r(1)+2*r(2)); (1.4142*(V(1,1)+V(1,2))-1.7678*(V(2,1)+V(2,2)))/(1+r(1)+r(2));(0.9354*V(2,1)+V(2,2))/(1+r(1)+r(2))],2) <= (1+r(1)+r(2)-u(1)-u(2)+tau)/(2+2*r(1)+2*r(2))];
optimize(Constraints,Objective,sdpsettings('solver','mosek'));
Note that u,V, r are variables