annotate DL/RLS-DLA/private/col2imstep.m @ 60:ad36f80e2ccf

(none)
author idamnjanovic
date Tue, 15 Mar 2011 12:20:59 +0000
parents
children
rev   line source
idamnjanovic@60 1 %COL2IMSTEP Rearrange matrix columns into blocks.
idamnjanovic@60 2 % A = COL2IMSTEP(B,[MM NN],[N1 N2]) rearranges the columns of B into
idamnjanovic@60 3 % sliding N1-by-N2 blocks producing the matrix A of size MM-by-NN. B is
idamnjanovic@60 4 % usually the result of calling IM2COLSTEP(...) with a stepsize of 1, or
idamnjanovic@60 5 % using Matlab's IM2COL(..,'sliding'). Overlapping blocks are summed in A.
idamnjanovic@60 6 %
idamnjanovic@60 7 % A = COL2IMSTEP(B,[MM NN],[N1 N2],[S1 S2]) arranges the blocks in A with
idamnjanovic@60 8 % a step size of (S1,S2) between them. The first block is at A(1:N1,1:N2),
idamnjanovic@60 9 % and the rest are at A((1:N1)+i*S1,(1:N2)+j*S2). Overlapping blocks are
idamnjanovic@60 10 % summed in A. Note that B is usually the result of calling
idamnjanovic@60 11 % IM2COLSTEP(...) with a stepsize of [S1 S2].
idamnjanovic@60 12 %
idamnjanovic@60 13 % A = IM2COLSTEP(B,[MM NN KK],[N1 N2 N3],[S1 S2 S3]) generates a 3-D
idamnjanovic@60 14 % output matrix A. The step size [S1 S2 S3] may be ommitted, and defaults
idamnjanovic@60 15 % to [1 1 1].
idamnjanovic@60 16 %
idamnjanovic@60 17 % See also IM2COLSTEP, IM2COL, COUNTCOVER.
idamnjanovic@60 18
idamnjanovic@60 19
idamnjanovic@60 20 % Ron Rubinstein
idamnjanovic@60 21 % Computer Science Department
idamnjanovic@60 22 % Technion, Haifa 32000 Israel
idamnjanovic@60 23 % ronrubin@cs
idamnjanovic@60 24 %
idamnjanovic@60 25 % August 2009