Mercurial > hg > smallbox
annotate Problems/generateMyDummyProblem.m @ 149:fec205ec6ef6 ivand_dev
Merge
author | Ivan Damnjanovic lnx <ivan.damnjanovic@eecs.qmul.ac.uk> |
---|---|
date | Tue, 26 Jul 2011 16:01:17 +0100 |
parents | 037bb7da3703 |
children | f42aa8bcb82f |
rev | line source |
---|---|
ivan@130 | 1 function data=generateMyDummyProblem(varargin) |
ivan@130 | 2 %% Template function that can be used for the sparse problem specification |
ivan@130 | 3 % |
ivan@130 | 4 % The problem specification function should take training signals and |
ivan@130 | 5 % convert them to the matrix of training elements to be used for |
ivan@130 | 6 % dictionary learning. |
ivan@130 | 7 % |
ivan@130 | 8 % input arguments: |
ivan@130 | 9 % optional input parameters |
ivan@130 | 10 % |
ivan@130 | 11 % output arguments: |
ivan@130 | 12 % data - SPARCO compatible problem structure |
ivan@130 | 13 |
ivan@130 | 14 %% Change copyright notice as appropriate: |
ivan@130 | 15 % Centre for Digital Music, Queen Mary, University of London. |
ivan@130 | 16 % This file copyright 2009 Ivan Damnjanovic. |
ivan@130 | 17 % |
ivan@130 | 18 % This program is free software; you can redistribute it and/or |
ivan@130 | 19 % modify it under the terms of the GNU General Public License as |
ivan@130 | 20 % published by the Free Software Foundation; either version 2 of the |
ivan@130 | 21 % License, or (at your option) any later version. See the file |
ivan@130 | 22 % COPYING included with this distribution for more information. |
ivan@130 | 23 %% |