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?
I tried cp.power(X,C) but in this function C should be a scalar. I also used a loop to form X^C element wise. However, it increases solving time and vectorization is required.