% Define variablesx = sdpvar(N,1);
% Define constraints
% Define an objectiveObjective = (lambda*norm( U(:,iter).*x, 1 )+ 0.5*sum((Dic* x-Output).^2) )
% Set some options for YALMIP and solveroptions = sdpsettings('solver','sedumi','verbose',0)
% Solve the problemsol = optimize(Constraints,Objective,options);