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