Mercurial > hg > smallbox
annotate util/SMALL_init_DL.m @ 39:8f734534839a
(none)
author | idamnjanovic |
---|---|
date | Mon, 14 Mar 2011 15:35:01 +0000 |
parents | fc395272d53e |
children | 8e660fd14774 |
rev | line source |
---|---|
idamnjanovic@8 | 1 function DL = SMALL_init_DL(varargin) |
idamnjanovic@24 | 2 % |
idamnjanovic@24 | 3 % Centre for Digital Music, Queen Mary, University of London. |
idamnjanovic@24 | 4 % This file copyright 2010 Ivan Damnjanovic. |
idamnjanovic@24 | 5 % |
idamnjanovic@24 | 6 % This program is free software; you can redistribute it and/or |
idamnjanovic@24 | 7 % modify it under the terms of the GNU General Public License as |
idamnjanovic@24 | 8 % published by the Free Software Foundation; either version 2 of the |
idamnjanovic@24 | 9 % License, or (at your option) any later version. See the file |
idamnjanovic@24 | 10 % COPYING included with this distribution for more information. |
idamnjanovic@24 | 11 % |
idamnjanovic@24 | 12 % Function initialise SMALL structure for Dictionary Learning. |
idamnjanovic@24 | 13 % Optional input variables: |
idamnjanovic@24 | 14 % toolbox - name of Dictionary Learning toolbox you want to use |
idamnjanovic@24 | 15 % name - name of the algorithm from above toolbox |
idamnjanovic@24 | 16 % param - parameters you want to set |
idamnjanovic@24 | 17 %% |
idamnjanovic@24 | 18 |
idamnjanovic@24 | 19 DL.toolbox=[]; |
idamnjanovic@24 | 20 DL.name=[]; |
idamnjanovic@24 | 21 DL.param=[]; |
idamnjanovic@24 | 22 DL.D=[]; |
idamnjanovic@24 | 23 DL.time=[]; |
idamnjanovic@24 | 24 end |