I am trying to model an ACOPF model with the rectangular form with YALMIP(meaning complex number variables and complex number constraints).
However, when I try to solve my model using FMINCON, I always have the following error:
Model creation failed (Only 1- and inf-norms can be used in a nonconvex fashion)
Upon further inspection, it is clear that the problem is when I try to add any constraints with norm(Variable,1) <= Bound or A + B + norm(Variable,1) == Value. On the Yalmip documentation/tutorials, I do find documentation about using norm and it seems that I'm using as it should be used. So, I decided to post here to see if anyone could help me in figuring out why does this problem happen.