Hi professor,
I use MOSEK through YALMIP. My model is as follows.
min: w1'*Q*w1
constraint: real(w1)<1; imag(w1)<1;
where w1 is complex variables and Q is full-rank hermitian matrix.
I want to dualize this model, there are obviously two ways. The first is dualizing it directly, but I don't know how to express the dualization of real(w1) and imag(w1). Last question you told me that YALMIP is x = [1 1i]* [a b], however I don't konw how to deal with it in this model.
The second way is decomposition w1 into w1=[eye(),1i*eye()]*[real(w1); imag(w1)]. However this way will lead to [eye(),1i*eye()]'*Q*[eye(),1i*eye()] is a not full-rank matrix, which cannot find the inverse matrix.
So I am totally confused. Could you help me deal with this problem? Thank you so much.
Regards,
Mayankai