annotate solvers/SMALL_ompGabor/omp2mex.m @ 183:0d7a81655ef2
danieleb
removed cumulative coherence calculation
author |
Daniele Barchiesi <daniele.barchiesi@eecs.qmul.ac.uk> |
date |
Fri, 27 Jan 2012 13:15:11 +0000 |
parents |
31d2864dfdd4 |
children |
|
rev |
line source |
ivan@140
|
1 %This is the Matlab interface to the OMP2 MEX implementation.
|
ivan@140
|
2 %The function is not for independent use, only through omp2.m.
|
ivan@140
|
3
|
ivan@140
|
4
|
ivan@140
|
5 %OMP2MEX Matlab interface to the OMP2 MEX implementation.
|
ivan@140
|
6 % GAMMA = OMP2MEX(D,X,DtX,XtX,G,EPSILON,SPARSE_G,MSGDELTA,MAXATOMS,PROFILE)
|
ivan@140
|
7 % invokes the OMP2 MEX function according to the specified parameters. Not
|
ivan@140
|
8 % all the parameters are required. Those among D, X, DtX, XtX and G which
|
ivan@140
|
9 % are not specified should be passed as [].
|
ivan@140
|
10 %
|
ivan@140
|
11 % EPSILON - the target error.
|
ivan@140
|
12 % SPARSE_G - returns a sparse GAMMA when nonzero, full GAMMA when zero.
|
ivan@140
|
13 % MSGDELTA - the delay in secs between messages. Zero means no messages.
|
ivan@140
|
14 % MAXATOMS - the max number of atoms per signal, negative for no max.
|
ivan@140
|
15 % PROFILE - nonzero means that profiling information should be printed.
|
ivan@140
|
16
|
ivan@140
|
17
|
ivan@140
|
18 % Ron Rubinstein
|
ivan@140
|
19 % Computer Science Department
|
ivan@140
|
20 % Technion, Haifa 32000 Israel
|
ivan@140
|
21 % ronrubin@cs
|
ivan@140
|
22 %
|
ivan@140
|
23 % April 2009
|