Mercurial > hg > smallbox
annotate DL/my_dummy_DL.m @ 186:9c418bea7f6a bug_386
Addresses Bug #386: removed the 4th output variable (versn) in all calls of function fileparts.
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Thu, 09 Feb 2012 17:25:14 +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 %% |