Mercurial > hg > smallbox
view DL/Majorization Minimization DL/ExactDicoRecovery/mmdlcn_exactRec_demo.m @ 186:9c418bea7f6a bug_386
Addresses Bug #386: removed the 4th output variable (versn) in all calls of function fileparts.
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Thu, 09 Feb 2012 17:25:14 +0000 |
parents | b14209313ba4 |
children |
line wrap: on
line source
function mmdlcn_exactRec_demo(it,k,sn,cs) tic IT = it; K = k; SN = sn; if SN<10, samnum = ['0',num2str(SN)]; else samnum = num2str(SN); end load(['Param',num2str(K),'kS',samnum,'.mat']) lambda = 2*.2; % 2 * Smallest coefficients (Soft Thresholding) if cs == 'bn' res = 1; elseif cs == 'un' res = 2; else disp('Undefined dictionary admissible set.') end method = ['bn';'un']; res = 2; % 1 for bounded-norm, 2 for unit-norm %%%%%%%%%%%%%% Phi = Phio; M = size(Phi,1); [Phi,unhat,ert] = mmdl_cn(x,Phi,lambda,IT,res); save(['RDLl1',num2str(M),'t',num2str(IT),'iki',method(res,:),num2str(K),'v1d',num2str(SN),'.mat'],'Phi','Phid','x','ud','unhat','ert') toc