Mercurial > hg > smallbox
annotate util/SMALL_init_solver.m @ 128:8e660fd14774 ivand_dev
Feature 186
author | Ivan Damnjanovic lnx <ivan.damnjanovic@eecs.qmul.ac.uk> |
---|---|
date | Mon, 13 Jun 2011 14:55:45 +0100 |
parents | fc395272d53e |
children | 31d2864dfdd4 |
rev | line source |
---|---|
idamnjanovic@8 | 1 function solver = SMALL_init_solver(varargin) |
ivan@128 | 2 %% Function initialise SMALL structure for sparse representation. |
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 solver.toolbox=[]; |
idamnjanovic@24 | 21 solver.name=[]; |
idamnjanovic@24 | 22 solver.param=[]; |
idamnjanovic@24 | 23 solver.solution=[]; |
idamnjanovic@24 | 24 solver.reconstructed=[]; |
idamnjanovic@24 | 25 solver.time=[]; |
idamnjanovic@24 | 26 |
idamnjanovic@8 | 27 end |