annotate util/ksvd utils/sprow.m @ 170:68fb71aa5339 danieleb

Added dictionary decorrelation functions and test script for Letters paper.
author Daniele Barchiesi <daniele.barchiesi@eecs.qmul.ac.uk>
date Thu, 06 Oct 2011 14:33:41 +0100
parents c3eca463202d
children
rev   line source
idamnjanovic@70 1 %SPROW Extract row of sparse matrix.
idamnjanovic@70 2 % X = SPROW(A,J) where A is a sparse matrix, returns the nonzero values in
idamnjanovic@70 3 % the row A(J,:).
idamnjanovic@70 4 %
idamnjanovic@70 5 % [X,ID] = SPROW(A,J) also returns the column indices of the nonzeros.
idamnjanovic@70 6 %
idamnjanovic@70 7 % Note that the call [X,ID] = SPROW(A,J) is equivalent (but more efficient
idamnjanovic@70 8 % than) the Matlab code
idamnjanovic@70 9 %
idamnjanovic@70 10 % IDS = find(A(J,:));
idamnjanovic@70 11 % X = A(J,IDS);
idamnjanovic@70 12
idamnjanovic@70 13
idamnjanovic@70 14 % Ron Rubinstein
idamnjanovic@70 15 % Computer Science Department
idamnjanovic@70 16 % Technion, Haifa 32000 Israel
idamnjanovic@70 17 % ronrubin@cs
idamnjanovic@70 18 %
idamnjanovic@70 19 % August 2009