annotate DL/my_dummy_DL.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 138f7f0fdcdf
children
rev   line source
ivan@128 1 function [D]=my_dummy_DL(X, params)
ivan@128 2 %% Template function that can be used for DL algorithm implementation
ivan@128 3 %
ivan@128 4 %
ivan@128 5 % input arguments:
ivan@128 6 % X - matrix columns are training signals
ivan@128 7 % params - struycture with parameters for DL
ivan@128 8 % algorithm
ivan@128 9 %
ivan@128 10 % output arguments:
ivan@128 11 % D - Learned dictionary.
ivan@128 12
ivan@128 13 %% Change copyright notice as appropriate:
ivan@128 14 % Centre for Digital Music, Queen Mary, University of London.
ivan@128 15 % This file copyright 2009 Ivan Damnjanovic.
ivan@128 16 %
ivan@128 17 % This program is free software; you can redistribute it and/or
ivan@128 18 % modify it under the terms of the GNU General Public License as
ivan@128 19 % published by the Free Software Foundation; either version 2 of the
ivan@128 20 % License, or (at your option) any later version. See the file
ivan@128 21 % COPYING included with this distribution for more information.
ivan@128 22 %%