Mercurial > hg > smallbox
annotate util/SMALL_init_DL.m @ 151:af5abc34a5e1
Added tag release_1.51 for changeset 30872eb3d160
author | Ivan Damnjanovic lnx <ivan.damnjanovic@eecs.qmul.ac.uk> |
---|---|
date | Tue, 26 Jul 2011 16:02:59 +0100 |
parents | 8e660fd14774 |
children | 485747bf39e0 |
rev | line source |
---|---|
idamnjanovic@8 | 1 function DL = SMALL_init_DL(varargin) |
ivan@128 | 2 %% Function initialise SMALL structure for Dictionary Learning. |
ivan@128 | 3 % Optional input variables: |
ivan@128 | 4 % toolbox - name of Dictionary Learning toolbox you want to use |
ivan@128 | 5 % name - name of the algorithm from above toolbox |
ivan@128 | 6 % param - parameters you want to set |
ivan@128 | 7 |
idamnjanovic@24 | 8 % |
idamnjanovic@24 | 9 % Centre for Digital Music, Queen Mary, University of London. |
idamnjanovic@24 | 10 % This file copyright 2010 Ivan Damnjanovic. |
idamnjanovic@24 | 11 % |
idamnjanovic@24 | 12 % This program is free software; you can redistribute it and/or |
idamnjanovic@24 | 13 % modify it under the terms of the GNU General Public License as |
idamnjanovic@24 | 14 % published by the Free Software Foundation; either version 2 of the |
idamnjanovic@24 | 15 % License, or (at your option) any later version. See the file |
idamnjanovic@24 | 16 % COPYING included with this distribution for more information. |
idamnjanovic@24 | 17 % |
idamnjanovic@24 | 18 %% |
idamnjanovic@24 | 19 |
idamnjanovic@24 | 20 DL.toolbox=[]; |
idamnjanovic@24 | 21 DL.name=[]; |
idamnjanovic@24 | 22 DL.param=[]; |
idamnjanovic@24 | 23 DL.D=[]; |
idamnjanovic@24 | 24 DL.time=[]; |
idamnjanovic@24 | 25 end |