<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Binary to Gray code conversion for PSK and PAM</title>
	<atom:link href="http://www.dsplog.com/2008/05/11/binary-to-gray-code-conversion-psk-pam/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dsplog.com/2008/05/11/binary-to-gray-code-conversion-psk-pam/</link>
	<description>Signal Processing for Communication</description>
	<lastBuildDate>Fri, 30 Jul 2010 01:36:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Krishna Sankar</title>
		<link>http://www.dsplog.com/2008/05/11/binary-to-gray-code-conversion-psk-pam/#comment-16896</link>
		<dc:creator>Krishna Sankar</dc:creator>
		<pubDate>Thu, 10 Dec 2009 01:02:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.dsplog.com/?p=150#comment-16896</guid>
		<description>@vijay: I emailed you the details.</description>
		<content:encoded><![CDATA[<p>@vijay: I emailed you the details.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vijay j</title>
		<link>http://www.dsplog.com/2008/05/11/binary-to-gray-code-conversion-psk-pam/#comment-16817</link>
		<dc:creator>vijay j</dc:creator>
		<pubDate>Tue, 08 Dec 2009 11:14:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.dsplog.com/?p=150#comment-16817</guid>
		<description>Dear Sir,

Kindly send me the free e-book on AWGN, I am already a memebr.

Thankyou
Vijay</description>
		<content:encoded><![CDATA[<p>Dear Sir,</p>
<p>Kindly send me the free e-book on AWGN, I am already a memebr.</p>
<p>Thankyou<br />
Vijay</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Krishna Sankar</title>
		<link>http://www.dsplog.com/2008/05/11/binary-to-gray-code-conversion-psk-pam/#comment-14392</link>
		<dc:creator>Krishna Sankar</dc:creator>
		<pubDate>Tue, 27 Oct 2009 00:29:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.dsplog.com/?p=150#comment-14392</guid>
		<description>@O.S.O: I agree :)</description>
		<content:encoded><![CDATA[<p>@O.S.O: I agree <img src='http://www.dsplog.com/db-install/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: O.S.O</title>
		<link>http://www.dsplog.com/2008/05/11/binary-to-gray-code-conversion-psk-pam/#comment-14120</link>
		<dc:creator>O.S.O</dc:creator>
		<pubDate>Thu, 22 Oct 2009 04:32:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.dsplog.com/?p=150#comment-14120</guid>
		<description>Yes, i agree (strange) !
Disregarding the way of implementation of bitshift/floor under Matlab/Octave, it is well known that (Bit Shifting) is faster than any multiplication/division method, specially on microprocessors.</description>
		<content:encoded><![CDATA[<p>Yes, i agree (strange) !<br />
Disregarding the way of implementation of bitshift/floor under Matlab/Octave, it is well known that (Bit Shifting) is faster than any multiplication/division method, specially on microprocessors.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Krishna Sankar</title>
		<link>http://www.dsplog.com/2008/05/11/binary-to-gray-code-conversion-psk-pam/#comment-13600</link>
		<dc:creator>Krishna Sankar</dc:creator>
		<pubDate>Fri, 09 Oct 2009 00:36:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.dsplog.com/?p=150#comment-13600</guid>
		<description>@O.S.O: Thanks for the tip. However, I did a quick experiment with octave using tic-toc and did not observe that using bitshift() instead of floor is faster. 
octave:51&gt; clear all; tic; ip = [0:2^20-1];op = bitxor(ip,floor(ip/2));toc
Elapsed time is 0.4 seconds.
octave:52&gt; clear all; tic;ip1 = [0:2^20-1];op1 = bitxor(ip1,bitshift(ip1,-1));toc
Elapsed time is 0.46 seconds.

Agree?</description>
		<content:encoded><![CDATA[<p>@O.S.O: Thanks for the tip. However, I did a quick experiment with octave using tic-toc and did not observe that using bitshift() instead of floor is faster.<br />
octave:51&gt; clear all; tic; ip = [0:2^20-1];op = bitxor(ip,floor(ip/2));toc<br />
Elapsed time is 0.4 seconds.<br />
octave:52&gt; clear all; tic;ip1 = [0:2^20-1];op1 = bitxor(ip1,bitshift(ip1,-1));toc<br />
Elapsed time is 0.46 seconds.</p>
<p>Agree?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: O.S.O</title>
		<link>http://www.dsplog.com/2008/05/11/binary-to-gray-code-conversion-psk-pam/#comment-13520</link>
		<dc:creator>O.S.O</dc:creator>
		<pubDate>Wed, 07 Oct 2009 21:21:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.dsplog.com/?p=150#comment-13520</guid>
		<description>Great job ;)
i just wanted to mention that this snippet :
&lt;code&gt;
op = bitxor(ip,floor(ip/2));
&lt;/code&gt; 
can be more optimized by just doing a right-shift bit by 1.
so the equivalent code would be :
&lt;code&gt; 
bitxor(ip,bitshift(ip,-1));
&lt;/code&gt;
-1 means a 1 bit shift to the right (the negative sign means right).</description>
		<content:encoded><![CDATA[<p>Great job <img src='http://www.dsplog.com/db-install/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
i just wanted to mention that this snippet :<br />
<code><br />
op = bitxor(ip,floor(ip/2));<br />
</code><br />
can be more optimized by just doing a right-shift bit by 1.<br />
so the equivalent code would be :<br />
<code><br />
bitxor(ip,bitshift(ip,-1));<br />
</code><br />
-1 means a 1 bit shift to the right (the negative sign means right).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: suraj kumar</title>
		<link>http://www.dsplog.com/2008/05/11/binary-to-gray-code-conversion-psk-pam/#comment-1771</link>
		<dc:creator>suraj kumar</dc:creator>
		<pubDate>Sun, 14 Sep 2008 05:36:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.dsplog.com/?p=150#comment-1771</guid>
		<description>i liked your method of conversion very much.
so 
thanks</description>
		<content:encoded><![CDATA[<p>i liked your method of conversion very much.<br />
so<br />
thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>
