Mercurial > hg > smallbox
comparison DL/Majorization Minimization DL/ExactDicoRecovery/modcn_exactRec_demo.m @ 155:b14209313ba4 ivand_dev
Integration of Majorization Minimisation Dictionary Learning
author | Ivan Damnjanovic lnx <ivan.damnjanovic@eecs.qmul.ac.uk> |
---|---|
date | Mon, 22 Aug 2011 11:46:35 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
154:0de08f68256b | 155:b14209313ba4 |
---|---|
1 function modcn_exactRec_demo(it,k,sn) | |
2 tic | |
3 IT = it; | |
4 K = k; | |
5 SN = sn; | |
6 if SN<10, | |
7 samnum = ['0',num2str(SN)]; | |
8 else | |
9 samnum = num2str(SN); | |
10 end | |
11 load(['Param',num2str(K),'kS',samnum,'.mat']) | |
12 lambda = 2*.2; % 2 * Smallest coefficients (Soft Thresholding) | |
13 %%%%%%%%%%%%%% | |
14 Phi = Phio; | |
15 M = size(Phi,1); | |
16 [Phi,unhat,ert] = mod_cn(x,Phi,lambda,IT); | |
17 | |
18 save(['MODl1',num2str(M),'t',num2str(IT),'ikiun',num2str(K),'v1d',num2str(SN),'.mat'],'Phi','Phid','x','ud','unhat','ert') | |
19 | |
20 toc |