annotate solvers/SMALL_ompGabor/ompmex.m @ 217:8b3c71bb44eb
luisf_dev
Removed "clear all" from example scripts (subs by "clear" instead)
author |
luisf <luis.figueira@eecs.qmul.ac.uk> |
date |
Thu, 22 Mar 2012 14:41:04 +0000 |
parents |
31d2864dfdd4 |
children |
|
rev |
line source |
ivan@140
|
1 %This is the Matlab interface to the OMP MEX implementation.
|
ivan@140
|
2 %The function is not for independent use, only through omp.m.
|
ivan@140
|
3
|
ivan@140
|
4
|
ivan@140
|
5 %OMPMEX Matlab interface to the OMP MEX implementation.
|
ivan@140
|
6 % GAMMA = OMPMEX(D,X,DtX,G,L,SPARSE_G,MSGDELTA,PROFILE) invokes the OMP
|
ivan@140
|
7 % MEX function according to the specified parameters. Not all the
|
ivan@140
|
8 % parameters are required. Those among D, X, DtX and G which are not
|
ivan@140
|
9 % specified should be passed as [].
|
ivan@140
|
10 %
|
ivan@140
|
11 % L - the target sparsity.
|
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 % PROFILE - nonzero means that profiling information should be printed.
|
ivan@140
|
15
|
ivan@140
|
16
|
ivan@140
|
17 % Ron Rubinstein
|
ivan@140
|
18 % Computer Science Department
|
ivan@140
|
19 % Technion, Haifa 32000 Israel
|
ivan@140
|
20 % ronrubin@cs
|
ivan@140
|
21 %
|
ivan@140
|
22 % April 2009
|