<< Chapter < Page Chapter >> Page >
In this module we provide an overview of some of the most common greedy algorithms and their application to the problem of sparse recovery.

Setup

As opposed to solving a (possibly computationally expensive) convex optimization program, an alternate flavor to sparse recovery is to apply methods of sparse approximation . Recall that the goal of sparse recovery is to recover the sparsest vector x which explains the linear measurements y . In other words, we aim to solve the (nonconvex) problem:

min I | I | : y = i I φ i x i ,

where I denotes a particular subset of the indices i = 1 , ... , N , and φ i denotes the i th column of Φ . It is well known that searching over the power set formed by the columns of Φ for the optimal subset I * with smallest cardinality is NP-hard. Instead, classical sparse approximation methods tackle this problem by greedily selecting columns of Φ and forming successively better approximations to y .

Matching pursuit

Matching Pursuit (MP), named and introduced to the signal processing community by Mallat and Zhang  [link] , [link] , is an iterative greedy algorithm that decomposes a signal into a linear combination of elements from a dictionary. In sparse recovery, this dictionary is merely the sampling matrix Φ R M × N ; we seek a sparse representation ( x ) of our “signal” y .

MP is conceptually very simple. A key quantity in MP is the residual r R M ; the residual represents the as-yet “unexplained” portion of the measurements. At each iteration of the algorithm, we select a vector from the dictionary that is maximally correlated with the residual r :

λ k = arg max λ r k , φ λ φ λ φ λ 2 .

Once this column is selected, we possess a “better” representation of the signal, since a new coefficient indexed by λ k has been added to our signal approximation. Thus, we update both the residual and the approximation as follows:

r k = r k - 1 - r k - 1 , φ λ k φ λ k φ λ k 2 , x ^ λ k = x ^ λ k + r k - 1 , φ λ k .

and repeat the iteration. A suitable stopping criterion is when the norm of r becomes smaller than some quantity. MP is described in pseudocode form below.

Inputs: Measurement matrix Φ , signal measurements y Outputs: Sparse signal x ^ initialize: x ^ 0 = 0 , r = y , i = 0 . while ħalting criterion false do 1. i i + 1 2. b Φ T r {form residual signal estimate} 3. x ^ i x ^ i - 1 + T ( 1 ) {update largest magnitude coefficient} 4. r r - Φ x ^ i {update measurement residual} end while return x ^ x ^ i

Although MP is intuitive and can find an accurate approximation of the signal, it possesses two major drawbacks: (i) it offers no guarantees in terms of recovery error; indeed, it does not exploit the special structure present in the dictionary Φ ; (ii) the required number of iterations required can be quite large. The complexity of MP is O ( M N T )   [link] , where T is the number of MP iterations

Orthogonal matching pursuit (omp)

Matching Pursuit (MP) can prove to be computationally infeasible for many problems, since the complexity of MP grows linearly in the number of iterations T . By employing a simple modification of MP, the maximum number of MP iterations can be upper bounded as follows. At any iteration k , Instead of subtracting the contribution of the dictionary element with which the residual r is maximally correlated, we compute the projection of r onto the orthogonal subspace to the linear span of the currently selected dictionary elements. This quantity thus better represents the “unexplained” portion of the residual, and is subtracted from r to form a new residual, and the process is repeated. If Φ Ω is the submatrix formed by the columns of Φ selected at time step t , the following operations are performed:

Questions & Answers

how to create a software using Android phone
Wiseman Reply
how
basra
what is the difference between C and C++.
Yan Reply
what is software
Sami Reply
software is a instructions like programs
Shambhu
what is the difference between C and C++.
Yan
yes, how?
Hayder
what is software engineering
Ahmad
software engineering is a the branch of computer science deals with the design,development, testing and maintenance of software applications.
Hayder
who is best bw software engineering and cyber security
Ahmad
Both software engineering and cybersecurity offer exciting career prospects, but your choice ultimately depends on your interests and skills. If you enjoy problem-solving, programming, and designing software syste
Hayder
what's software processes
Ntege Reply
I haven't started reading yet. by device (hardware) or for improving design Lol? Here. Requirement, Design, Implementation, Verification, Maintenance.
Vernon
I can give you a more valid answer by 5:00 By the way gm.
Vernon
it is all about designing,developing, testing, implementing and maintaining of software systems.
Ehenew
hello assalamualaikum
Sami
My name M Sami I m 2nd year student
Sami
what is the specific IDE for flutter programs?
Mwami Reply
jegudgdtgd my Name my Name is M and I have been talking about iey my papa john's university of washington post I tagged I will be in
Mwaqas Reply
yes
usman
how disign photo
atul Reply
hlo
Navya
hi
Michael
yes
Subhan
Show the necessary steps with description in resource monitoring process (CPU,memory,disk and network)
samuel Reply
What is software engineering
Tafadzwa Reply
Software engineering is a branch of computer science directed to writing programs to develop Softwares that can drive or enable the functionality of some hardwares like phone , automobile and others
kelvin
if any requirement engineer is gathering requirements from client and after getting he/she Analyze them this process is called
Alqa Reply
The following text is encoded in base 64. Ik5ldmVyIHRydXN0IGEgY29tcHV0ZXIgeW91IGNhbid0IHRocm93IG91dCBhIHdpbmRvdyIgLSBTdGV2ZSBXb3puaWFr Decode it, and paste the decoded text here
Julian Reply
what to do you mean
Vincent
hello
ALI
how are you ?
ALI
What is the command to list the contents of a directory in Unix and Unix-like operating systems
George Reply
how can i make my own software free of cost
Faizan Reply
like how
usman
hi
Hayder
The name of the author of our software engineering book is Ian Sommerville.
Doha Reply
what is software
Sampson Reply
the set of intruction given to the computer to perform a task
Noor
Got questions? Join the online conversation and get instant answers!
Jobilize.com Reply

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, An introduction to compressive sensing. OpenStax CNX. Apr 02, 2011 Download for free at http://legacy.cnx.org/content/col11133/1.5
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'An introduction to compressive sensing' conversation and receive update notifications?

Ask