comparison config/SMALL_solve_config.m @ 244:5c8bcdadb380 unlocbox

added UNLocBox interface, example and a 128x128 Lena
author bmailhe
date Tue, 04 Sep 2012 11:00:36 +0100
parents 198d4d9cee74
children
comparison
equal deleted inserted replaced
243:1fbd28dfb99e 244:5c8bcdadb380
72 % MMbox does not accept implicit dictionary definition 72 % MMbox does not accept implicit dictionary definition
73 A = opToMatrix(Problem.A, 1); 73 A = opToMatrix(Problem.A, 1);
74 end 74 end
75 75
76 [y, cost] = wrapper_mm_solver(b, A, solver.param); 76 [y, cost] = wrapper_mm_solver(b, A, solver.param);
77
78 elseif (strcmpi(solver.toolbox, 'UNLocBox'))
79 if ~isa(Problem.A,'float')
80 % MMbox does not accept implicit dictionary definition
81 A = opToMatrix(Problem.A, 1);
82 end
83
84 y = unloc_solver(b, A, solver.param,solver.name);
77 85
78 %% 86 %%
79 % Please do not make any changes to the 'SMALL_solve_config.m' file 87 % Please do not make any changes to the 'SMALL_solve_config.m' file
80 % All the changes should be done to your local configuration file 88 % All the changes should be done to your local configuration file
81 % named 'SMALL_solve_config_local.m' 89 % named 'SMALL_solve_config_local.m'