minimize lambda_max(X)/lambda_min(X)
subject to
X - AT*X*A <0
X>0
how do I formulate this in CVX?
It always gives me error saying disciplined convex programming error as it is a convex term divided by convex.
I also tried
minimize t
subject to lambda_max(X) - t*(lambda_min(X))>=0
X>0
X - AT*X*A <0
It still gives the same discipline error.