annotate Problems/generateMyDummyProblem.m @ 130:037bb7da3703 ivand_dev

changing names of two functions to be consistent with others
author Ivan Damnjanovic lnx <ivan.damnjanovic@eecs.qmul.ac.uk>
date Mon, 13 Jun 2011 15:04:06 +0100
parents
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 %%