<?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, 10 Feb 2012 01:03:15 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Krishna Sankar</title>
		<link>http://www.dsplog.com/2008/05/11/binary-to-gray-code-conversion-psk-pam/#comment-56461</link>
		<dc:creator>Krishna Sankar</dc:creator>
		<pubDate>Thu, 26 May 2011 00:52:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.dsplog.com/?p=150#comment-56461</guid>
		<description>@Rishu: Thanks, glad to help.</description>
		<content:encoded><![CDATA[<p>@Rishu: Thanks, glad to help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rishu</title>
		<link>http://www.dsplog.com/2008/05/11/binary-to-gray-code-conversion-psk-pam/#comment-52462</link>
		<dc:creator>Rishu</dc:creator>
		<pubDate>Sun, 10 Apr 2011 16:40:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.dsplog.com/?p=150#comment-52462</guid>
		<description>Thanks a lot. Your method is fundamental and helps to understand the conversion properly.</description>
		<content:encoded><![CDATA[<p>Thanks a lot. Your method is fundamental and helps to understand the conversion properly.</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-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>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: www.dsplog.com @ 2012-02-11 00:56:25 -->
