annotate DL/my_dummy_DL.m @ 204:5fe60504a6a9 luisf_dev

Merge from 203:f3b6ddd2f04f
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Tue, 20 Mar 2012 15:53:15 +0000
parents 8e660fd14774
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 %%