Can formulation (sum(affine/concave) < constant) be transformed to a convex expression?

Uncategorized
Nov 24, 2020
M
cvx_begin
N = 5;
variables a(N) V_slack(N)
objective = 0;
for n=1:N
  objective = objective + quad_over_lin(a(n),V_slack(n));
end
minimize(objective)
cvx_end
T
Replying to #24

OK,thanks! :grinning: