<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/'><id>tag:blogger.com,1999:blog-6141980.post3138362116388733933..comments</id><updated>2008-04-14T08:08:10.495-05:00</updated><title type='text'>Comments on Nuit Blanche: Compressed Sensing: Subspace Pursuit Code, Fast Ma...</title><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://nuit-blanche.blogspot.com/feeds/3138362116388733933/comments/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6141980/3138362116388733933/comments/default'/><link rel='alternate' type='text/html' href='http://nuit-blanche.blogspot.com/2008/03/compressed-sensing-subspace-pursuit.html'/><author><name>Igor</name><email>noreply@blogger.com</email></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>7</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-6141980.post-5898319029540780183</id><published>2008-04-14T08:08:00.000-05:00</published><updated>2008-04-14T08:08:00.000-05:00</updated><title type='text'>In a simple example,length of sparse vector=N=5num...</title><content type='html'>In a simple example,length of sparse vector=N=5&lt;BR/&gt;number of measured samples=M=4&lt;BR/&gt;Sparsity=S=2&lt;BR/&gt;&lt;BR/&gt;Creating Partial fourier matrix(without randomizing the rows) and normalizing its columns&lt;BR/&gt;F=dftmtx(N);   &lt;BR/&gt; F=normalize(F(1:M,:));&lt;BR/&gt;I have sparse vector x&lt;BR/&gt;x=[0 0 0 0.6820 0.5253];&lt;BR/&gt;&lt;BR/&gt;The RIP condition &lt;BR/&gt;(1-delta)norm(x)^2 &lt;= norm(Fx)^2 &lt;= (1+delta) norm(x)^2&lt;BR/&gt;&lt;BR/&gt;is satisfied for delta=0.11(&lt;1.0)&lt;BR/&gt;&lt;BR/&gt;But if we see the eigen values of matrix F*F  are[0.75,1.25] which doesnot lie between [1-delta,1+delta]&lt;BR/&gt;Hence even if for some sparse vector x,the RIP condition is satisfied but it doesnt imply about the bounds on eigen values.&lt;BR/&gt;&lt;BR/&gt;Thanks &lt;BR/&gt;Samra</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6141980/3138362116388733933/comments/default/5898319029540780183'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6141980/3138362116388733933/comments/default/5898319029540780183'/><link rel='alternate' type='text/html' href='http://nuit-blanche.blogspot.com/2008/03/compressed-sensing-subspace-pursuit.html?showComment=1208178480000#c5898319029540780183' title=''/><author><name>samra</name><uri>http://www.blogger.com/profile/08439910654012575213</uri><email>noreply@blogger.com</email></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://nuit-blanche.blogspot.com/2008/03/compressed-sensing-subspace-pursuit.html' ref='tag:blogger.com,1999:blog-6141980.post-3138362116388733933' source='http://www.blogger.com/feeds/6141980/posts/default/3138362116388733933' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-6141980.post-4737003676769296400</id><published>2008-04-11T05:33:00.000-05:00</published><updated>2008-04-11T05:33:00.000-05:00</updated><title type='text'>Samra,Do you have an example ?Igor.</title><content type='html'>Samra,&lt;BR/&gt;&lt;BR/&gt;Do you have an example ?&lt;BR/&gt;&lt;BR/&gt;Igor.</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6141980/3138362116388733933/comments/default/4737003676769296400'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6141980/3138362116388733933/comments/default/4737003676769296400'/><link rel='alternate' type='text/html' href='http://nuit-blanche.blogspot.com/2008/03/compressed-sensing-subspace-pursuit.html?showComment=1207909980000#c4737003676769296400' title=''/><author><name>Igor</name><uri>http://www.blogger.com/profile/17474880327699002140</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='03885211565929377724'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://nuit-blanche.blogspot.com/2008/03/compressed-sensing-subspace-pursuit.html' ref='tag:blogger.com,1999:blog-6141980.post-3138362116388733933' source='http://www.blogger.com/feeds/6141980/posts/default/3138362116388733933' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-6141980.post-8641410837710729968</id><published>2008-04-10T08:53:00.000-05:00</published><updated>2008-04-10T08:53:00.000-05:00</updated><title type='text'>Hi,If i want to check the Restricted Isometry prop...</title><content type='html'>Hi,&lt;BR/&gt;&lt;BR/&gt;If i want to check the Restricted Isometry property for measurement matrix F,it should satisfy fo all S-sparse vectors x,the following relationship,&lt;BR/&gt;&lt;BR/&gt;(1-delta)norm(x)^2 &lt;= norm(Fc)^2 &lt;= (1+delta) norm(x)^2&lt;BR/&gt;&lt;BR/&gt;In the paper of Candes Decoding by Linear Programming,its written that if above condition is satisfied,all eigen values of (F*F),where F* is the Hermitian of F,should lie between (1-delta) and (1+delta).&lt;BR/&gt;&lt;BR/&gt;I have a question regarding eigen values of F*F.I have checked there may exist F which satsifies the above Restricted Isometry for all S sparse vectors but still the eigen values of F*F may not lie between (1-delta) and (1+delta)?&lt;BR/&gt;Can anybody clarify this.&lt;BR/&gt;&lt;BR/&gt;Thanks&lt;BR/&gt;Samra</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6141980/3138362116388733933/comments/default/8641410837710729968'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6141980/3138362116388733933/comments/default/8641410837710729968'/><link rel='alternate' type='text/html' href='http://nuit-blanche.blogspot.com/2008/03/compressed-sensing-subspace-pursuit.html?showComment=1207835580000#c8641410837710729968' title=''/><author><name>samra</name><uri>http://www.blogger.com/profile/08439910654012575213</uri><email>noreply@blogger.com</email></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://nuit-blanche.blogspot.com/2008/03/compressed-sensing-subspace-pursuit.html' ref='tag:blogger.com,1999:blog-6141980.post-3138362116388733933' source='http://www.blogger.com/feeds/6141980/posts/default/3138362116388733933' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-6141980.post-8353103181276508471</id><published>2008-03-20T12:29:00.000-05:00</published><updated>2008-03-20T12:29:00.000-05:00</updated><title type='text'>Samra,The beginning of an answer:http://www.acm.ca...</title><content type='html'>Samra,&lt;BR/&gt;&lt;BR/&gt;The beginning of an answer:&lt;BR/&gt;&lt;BR/&gt;http://www.acm.caltech.edu/~wakin/papers/randProjManifolds-03june2007.pdf&lt;BR/&gt;&lt;BR/&gt;"....Whitney’s Embedding Theorem [29] actually suggests for certain K-dimensional manifolds that the number of measurements need be no larger than 2K +1 to ensure an embedding. However, as it offers no guarantee of stability, the practical recovery of a signal on the manifold could be complicated. Interestingly, the number 2K also arises in CS as the number of random measurements required to embed the set of all K-sparse signals (but again with no&lt;BR/&gt;guarantee on the conditioning of the recovery problem); see [3]..."&lt;BR/&gt;&lt;BR/&gt;[3] is this reference:&lt;BR/&gt;http://www.dsp.ece.rice.edu/cs/DCS112005.pdf&lt;BR/&gt;&lt;BR/&gt;and it explains that the reason we need more than 2K measurements has to do with the fact that we are solving an l_1 problem (where 2K measurements are needed) instead of an l_0 (where only K measurements would be Ok). Somehow, there is an inefficiency in using basis pursuit as opposed to the combinatorial approach. The ratio between the two 2K/K could be the reason why the isometry constant is for 2S in the  1S-sparse case. &lt;BR/&gt;&lt;BR/&gt;I know it does not answer specifically your question, but I seem to have read something specific on this 2S-3S restricted isometry constant in one of Candes's paper but I can't find it for the moment.&lt;BR/&gt;&lt;BR/&gt;Maybe you could ask Candes directly ?&lt;BR/&gt;&lt;BR/&gt;Igor.</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6141980/3138362116388733933/comments/default/8353103181276508471'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6141980/3138362116388733933/comments/default/8353103181276508471'/><link rel='alternate' type='text/html' href='http://nuit-blanche.blogspot.com/2008/03/compressed-sensing-subspace-pursuit.html?showComment=1206034140000#c8353103181276508471' title=''/><author><name>Igor</name><uri>http://www.blogger.com/profile/17474880327699002140</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='03885211565929377724'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://nuit-blanche.blogspot.com/2008/03/compressed-sensing-subspace-pursuit.html' ref='tag:blogger.com,1999:blog-6141980.post-3138362116388733933' source='http://www.blogger.com/feeds/6141980/posts/default/3138362116388733933' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-6141980.post-4728460982526920352</id><published>2008-03-20T11:50:00.000-05:00</published><updated>2008-03-20T11:50:00.000-05:00</updated><title type='text'>Thanks igor,1)I have infact first looked at paper ...</title><content type='html'>Thanks igor,&lt;BR/&gt;&lt;BR/&gt;1)I have infact first looked at paper by Candes,but I couldnot understand why we are looking at isometry constants corresponding to twice or three times the actual sparsity of a signal.I mean why we dont look at simply isometry constant values corresponding to S sparse signal(not higher).&lt;BR/&gt;2)In the Candes paper on Compressed Sensing,I have constructed Gaussian measurement matrix as explained in Candes paper page 9 and made simulation to give corresponding isometry constants which turn out to be much higher(0.8-0.9).&lt;BR/&gt;&lt;BR/&gt;Thanks &lt;BR/&gt;Samra</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6141980/3138362116388733933/comments/default/4728460982526920352'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6141980/3138362116388733933/comments/default/4728460982526920352'/><link rel='alternate' type='text/html' href='http://nuit-blanche.blogspot.com/2008/03/compressed-sensing-subspace-pursuit.html?showComment=1206031800000#c4728460982526920352' title=''/><author><name>samra</name><uri>http://www.blogger.com/profile/08439910654012575213</uri><email>noreply@blogger.com</email></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://nuit-blanche.blogspot.com/2008/03/compressed-sensing-subspace-pursuit.html' ref='tag:blogger.com,1999:blog-6141980.post-3138362116388733933' source='http://www.blogger.com/feeds/6141980/posts/default/3138362116388733933' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-6141980.post-6651130062595553928</id><published>2008-03-20T10:25:00.000-05:00</published><updated>2008-03-20T10:25:00.000-05:00</updated><title type='text'>Samra,Quick answer, some of these results have bee...</title><content type='html'>Samra,&lt;BR/&gt;&lt;BR/&gt;Quick answer, some of these results have been shown in some of the papers of Candes, check out the first papers in :&lt;BR/&gt;&lt;BR/&gt;http://www.google.com/search?&amp;q=isometry+site%3Ahttp%3A%2F%2Fwww.acm.caltech.edu%2F%7Eemmanuel&lt;BR/&gt;&lt;BR/&gt;Igor.</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6141980/3138362116388733933/comments/default/6651130062595553928'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6141980/3138362116388733933/comments/default/6651130062595553928'/><link rel='alternate' type='text/html' href='http://nuit-blanche.blogspot.com/2008/03/compressed-sensing-subspace-pursuit.html?showComment=1206026700000#c6651130062595553928' title=''/><author><name>Igor</name><uri>http://www.blogger.com/profile/17474880327699002140</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='03885211565929377724'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://nuit-blanche.blogspot.com/2008/03/compressed-sensing-subspace-pursuit.html' ref='tag:blogger.com,1999:blog-6141980.post-3138362116388733933' source='http://www.blogger.com/feeds/6141980/posts/default/3138362116388733933' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-6141980.post-3838338224941948764</id><published>2008-03-20T08:43:00.000-05:00</published><updated>2008-03-20T08:43:00.000-05:00</updated><title type='text'>Hi,While reading and implementing CS basics,want t...</title><content type='html'>Hi,&lt;BR/&gt;&lt;BR/&gt;While reading and implementing CS basics,want to ask restricted isometric property.&lt;BR/&gt;&lt;BR/&gt;1)If signal is S-sparse,inorder to have perfect reconstruction,why do we require the measurement matrix(such as gaussian etc) should satisfy isometry property for 2S or 3S sparse signals?&lt;BR/&gt;&lt;BR/&gt;2)I have checked through simulations that for gaussian measurement matrix,the isometry property is only satisfied if signal has very few nonzeros,where as with fourier measurement matrix,we get isometry property satsified for larger values of sparsity S.Does this happen actually?&lt;BR/&gt;&lt;BR/&gt;Thanks&lt;BR/&gt;Samra</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6141980/3138362116388733933/comments/default/3838338224941948764'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6141980/3138362116388733933/comments/default/3838338224941948764'/><link rel='alternate' type='text/html' href='http://nuit-blanche.blogspot.com/2008/03/compressed-sensing-subspace-pursuit.html?showComment=1206020580000#c3838338224941948764' title=''/><author><name>samra</name><uri>http://www.blogger.com/profile/08439910654012575213</uri><email>noreply@blogger.com</email></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://nuit-blanche.blogspot.com/2008/03/compressed-sensing-subspace-pursuit.html' ref='tag:blogger.com,1999:blog-6141980.post-3138362116388733933' source='http://www.blogger.com/feeds/6141980/posts/default/3138362116388733933' type='text/html'/></entry></feed>