diff DL/RLS-DLA/SMALL_rlsdla.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 04cce72a4dc8
children 4337e28183f1
line wrap: on
line diff
--- a/DL/RLS-DLA/SMALL_rlsdla.m	Wed May 25 15:30:34 2011 +0100
+++ b/DL/RLS-DLA/SMALL_rlsdla.m	Mon Jun 13 14:55:45 2011 +0100
@@ -1,5 +1,5 @@
-function Dictionary = SMALL_rlsdla(X, params)
-%% Recursive Least Squares Dictionary Learning Algorithm
+function [D] = SMALL_rlsdla(X, params)
+%%  Recursive Least Squares Dictionary Learning Algorithm
 %
 %   D = SMALL_rlsdla(X, params) - runs RLS-DLA algorithm for
 %   training signals specified as columns of matrix X with parameters 
@@ -200,6 +200,5 @@
    end
 end
 
-Dictionary = D;
 
 end