% ACTIVE-SET METHOD for constrained optimization % Implementation of Algorithm 5.1 in the lecture notes function x = activeset( G, h, A, b, C, d, x0 ) x = x0; maxiter = 500; % Add your code here! for k = 1:maxiter disp(['STARTING ITERATION: ' num2str(k) ]); % Add your code here! end end