annotate Problems/private/omp2mex.m @ 55:435da1dc71a0

(none)
author idamnjanovic
date Mon, 14 Mar 2011 16:55:49 +0000
parents 217a33ac374e
children
rev   line source
idamnjanovic@51 1 %This is the Matlab interface to the OMP2 MEX implementation.
idamnjanovic@51 2 %The function is not for independent use, only through omp2.m.
idamnjanovic@51 3
idamnjanovic@51 4
idamnjanovic@51 5 %OMP2MEX Matlab interface to the OMP2 MEX implementation.
idamnjanovic@51 6 % GAMMA = OMP2MEX(D,X,DtX,XtX,G,EPSILON,SPARSE_G,MSGDELTA,MAXATOMS,PROFILE)
idamnjanovic@51 7 % invokes the OMP2 MEX function according to the specified parameters. Not
idamnjanovic@51 8 % all the parameters are required. Those among D, X, DtX, XtX and G which
idamnjanovic@51 9 % are not specified should be passed as [].
idamnjanovic@51 10 %
idamnjanovic@51 11 % EPSILON - the target error.
idamnjanovic@51 12 % SPARSE_G - returns a sparse GAMMA when nonzero, full GAMMA when zero.
idamnjanovic@51 13 % MSGDELTA - the delay in secs between messages. Zero means no messages.
idamnjanovic@51 14 % MAXATOMS - the max number of atoms per signal, negative for no max.
idamnjanovic@51 15 % PROFILE - nonzero means that profiling information should be printed.
idamnjanovic@51 16
idamnjanovic@51 17
idamnjanovic@51 18 % Ron Rubinstein
idamnjanovic@51 19 % Computer Science Department
idamnjanovic@51 20 % Technion, Haifa 32000 Israel
idamnjanovic@51 21 % ronrubin@cs
idamnjanovic@51 22 %
idamnjanovic@51 23 % April 2009