Mercurial > hg > smallbox
comparison util/SMALL_init_solver.m @ 8:33850553b702
(none)
author | idamnjanovic |
---|---|
date | Mon, 22 Mar 2010 10:56:54 +0000 |
parents | |
children | fc395272d53e |
comparison
equal
deleted
inserted
replaced
7:0151f1ea080d | 8:33850553b702 |
---|---|
1 function solver = SMALL_init_solver(varargin) | |
2 % Ivan Damnjanovic 2010 | |
3 % Function initialise SMALL structure for Dictionary Learning. | |
4 % Optional input variables: | |
5 % toolbox - name of Dictionary Learning toolbox you want to use | |
6 % name - name of the algorithm from above toolbox | |
7 % param - parameters you want to set | |
8 %% | |
9 | |
10 solver.toolbox=[]; | |
11 solver.name=[]; | |
12 solver.param=[]; | |
13 solver.solution=[]; | |
14 solver.reconstructed=[]; | |
15 solver.time=[]; | |
16 end |