To ensure convexity, the following optimization problem must adhere to the rule of perspective of a function:
A = rand(3,3) + 1i * rand(3,3);
A = A + A’;
A = A * A’; % to ensure A being hermitian semidefinite
cvx_begin
variables t mu_3
variable W(3,3) hermitian semidefinite
minimize t
subject to
trace(A*W)/(t-mu_3) + trace(W)/mu_3 <= 1;
trace(W) <= 1;
t >= mu_3;
mu_3 >= 0;
cvx_end.
However, I’m uncertain about how to reformulate the problem to comply with the DCP rules. If anyone could assist me, I would greatly appreciate it.