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