Can formulation (sum(affine/concave) < constant) be transformed to a convex expression? Uncategorized Nov 24, 2020 M Mark L. Stone Dec 8, 2020 #24 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 L Dec 9, 2020 #25 Replying to #24 OK,thanks! Previous Page 2 of 2