How to express a variable vector to the constant vector in cvxpy?
I want to express X^C in cvxpy where X is a convex expression as a vector and C is constant vector. How should I write this using cvxpy?
How to represent X^2/Y (X and Y are matrices) in cvxpy respecting DCP rules?
I have a convex problem for maximizing X^2/Y in cvxpy, where X and Y are matrices. I know that quad_over_lin is not elementwise. How can I write it in a acceptable way for cvxpy?