comparison util/SMALL_init_solver.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 solver = SMALL_init_solver(varargin) 1 function solver = SMALL_init_solver(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 solver.toolbox=[]; 10 % COPYING included with this distribution for more information.
11 solver.name=[]; 11 %
12 solver.param=[]; 12 % Function initialise SMALL structure for Dictionary Learning.
13 solver.solution=[]; 13 % Optional input variables:
14 solver.reconstructed=[]; 14 % toolbox - name of Dictionary Learning toolbox you want to use
15 solver.time=[]; 15 % name - name of the algorithm from above toolbox
16 % param - parameters you want to set
17 %%
18
19 solver.toolbox=[];
20 solver.name=[];
21 solver.param=[];
22 solver.solution=[];
23 solver.reconstructed=[];
24 solver.time=[];
25
16 end 26 end