view DL/Majorization Minimization DL/ExactDicoRecovery/ksvd_exactRec_demo.m @ 212:1d134a1b6f95 luisf_dev

Propagate the change from 'mailhe' to 'opt' in two_step_DL to the examples
author bmailhe
date Wed, 21 Mar 2012 18:13:02 +0000
parents b14209313ba4
children
line wrap: on
line source
function ksvd_exactRec_demo(it,k,sn)
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)
%%%%%%%%%
Phi = Phio;
M = size(Phi,1);
[Phi,unhat,ert] = ksvd_cn(x,Phi,lambda,IT);

save(['KSVDl1',num2str(M),'t',num2str(IT),'ikiun',num2str(K),'v1d',num2str(SN),'.mat'],'Phi','Phid','x','ud','unhat','ert')

toc