cvx_begin sdp quiet
variable F_BB(6,6) complex
variable t
b=vec(F_BB);
E=kron(eye(Ns),F_RF);
f=vec(F_opt);
y=[b;t];
C=[E’E -E’f;-f’E f’f];
A1=[eye(N_tRFNs) zeros(N_tRFNs,1);zeros(1,N_tRFNs) 0];
A2=[zeros(N_tRFNs) zeros(N_tRFNs,1);zeros(1,N_tRFNs) 1];
minimize(quad_form(y,C));
subject to
quad_form(y,A2)==1;
quad_form(y,A1)==N_tRF*Ns/Nt;
norm(y)>=0;
cvx_end
Previously, I misunderstood the meaning of the problem, but now it’s clear and there’s no issue.