<?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: Example of Cascaded Integrator Comb filter in Matlab</title>
	<atom:link href="http://www.dsplog.com/2007/07/01/example-of-cascaded-integrator-comb-filter-in-matlab/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dsplog.com/2007/07/01/example-of-cascaded-integrator-comb-filter-in-matlab/</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/2007/07/01/example-of-cascaded-integrator-comb-filter-in-matlab/#comment-92144</link>
		<dc:creator>Krishna Sankar</dc:creator>
		<pubDate>Wed, 04 Jan 2012 00:37:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.dsplog.com/2007/07/01/example-of-cascaded-integrator-comb-filter-in-matlab/#comment-92144</guid>
		<description>@Bhavani: Hope this matlab code snippet helps.
% freq response
h_comb = [1 zeros(1,7) -1];
hF = fft(h_comb,1024);
plot([-512:511]/1024, 10*log10(abs(fftshift(hF))))
xlabel(&#039;normalized frequency&#039;); ylabel(&#039;amplitude, dB&#039;); title(&#039;Amplitude response of comb filter&#039;);
grid on;</description>
		<content:encoded><![CDATA[<p>@Bhavani: Hope this matlab code snippet helps.<br />
% freq response<br />
h_comb = [1 zeros(1,7) -1];<br />
hF = fft(h_comb,1024);<br />
plot([-512:511]/1024, 10*log10(abs(fftshift(hF))))<br />
xlabel(&#8216;normalized frequency&#8217;); ylabel(&#8216;amplitude, dB&#8217;); title(&#8216;Amplitude response of comb filter&#8217;);<br />
grid on;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bhavani</title>
		<link>http://www.dsplog.com/2007/07/01/example-of-cascaded-integrator-comb-filter-in-matlab/#comment-87841</link>
		<dc:creator>Bhavani</dc:creator>
		<pubDate>Thu, 22 Dec 2011 07:01:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.dsplog.com/2007/07/01/example-of-cascaded-integrator-comb-filter-in-matlab/#comment-87841</guid>
		<description>i want to plot the magnitude response of comb filter.....anyone help me with Matlab code...Thanks in advance.........cic fiter :)</description>
		<content:encoded><![CDATA[<p>i want to plot the magnitude response of comb filter&#8230;..anyone help me with Matlab code&#8230;Thanks in advance&#8230;&#8230;&#8230;cic fiter <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: Krishna Sankar</title>
		<link>http://www.dsplog.com/2007/07/01/example-of-cascaded-integrator-comb-filter-in-matlab/#comment-56454</link>
		<dc:creator>Krishna Sankar</dc:creator>
		<pubDate>Thu, 26 May 2011 00:43:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.dsplog.com/2007/07/01/example-of-cascaded-integrator-comb-filter-in-matlab/#comment-56454</guid>
		<description>@Alexander: You can insert zeros and then convolve with a rectangular window
For eg,
xt = [1 zeros(1,2) 2 zeros(1,2) 3 zeros(1,2)];
ht = ones(1,3);
yt = conv(xt,ht);</description>
		<content:encoded><![CDATA[<p>@Alexander: You can insert zeros and then convolve with a rectangular window<br />
For eg,<br />
xt = [1 zeros(1,2) 2 zeros(1,2) 3 zeros(1,2)];<br />
ht = ones(1,3);<br />
yt = conv(xt,ht);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alexander</title>
		<link>http://www.dsplog.com/2007/07/01/example-of-cascaded-integrator-comb-filter-in-matlab/#comment-53870</link>
		<dc:creator>Alexander</dc:creator>
		<pubDate>Wed, 27 Apr 2011 13:53:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.dsplog.com/2007/07/01/example-of-cascaded-integrator-comb-filter-in-matlab/#comment-53870</guid>
		<description>I&#039;m very interested about the next:
You said:
&quot;Considering so, do we need to have the filtering hardware when doing interpolation? I do not think so. &quot;

Is there a way to replace the block &quot;arrow up, I&quot;,with zero-hold block(which passes the value of the input signal to the output instead of inserting a zero between samples).

How i can realize that in matlab?</description>
		<content:encoded><![CDATA[<p>I&#8217;m very interested about the next:<br />
You said:<br />
&#8220;Considering so, do we need to have the filtering hardware when doing interpolation? I do not think so. &#8221;</p>
<p>Is there a way to replace the block &#8220;arrow up, I&#8221;,with zero-hold block(which passes the value of the input signal to the output instead of inserting a zero between samples).</p>
<p>How i can realize that in matlab?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Krishna Sankar</title>
		<link>http://www.dsplog.com/2007/07/01/example-of-cascaded-integrator-comb-filter-in-matlab/#comment-39843</link>
		<dc:creator>Krishna Sankar</dc:creator>
		<pubDate>Sun, 14 Nov 2010 05:34:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.dsplog.com/2007/07/01/example-of-cascaded-integrator-comb-filter-in-matlab/#comment-39843</guid>
		<description>@richa: Please provide more details of the problem which you are facing.</description>
		<content:encoded><![CDATA[<p>@richa: Please provide more details of the problem which you are facing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: richa</title>
		<link>http://www.dsplog.com/2007/07/01/example-of-cascaded-integrator-comb-filter-in-matlab/#comment-39577</link>
		<dc:creator>richa</dc:creator>
		<pubDate>Tue, 09 Nov 2010 13:00:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.dsplog.com/2007/07/01/example-of-cascaded-integrator-comb-filter-in-matlab/#comment-39577</guid>
		<description>hello krishna
nice to see your article on cic decimation filter
i am having problem with frequency response of cic specifically i want to improve it 
can you help me i will be highly obiliged</description>
		<content:encoded><![CDATA[<p>hello krishna<br />
nice to see your article on cic decimation filter<br />
i am having problem with frequency response of cic specifically i want to improve it<br />
can you help me i will be highly obiliged</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: VA</title>
		<link>http://www.dsplog.com/2007/07/01/example-of-cascaded-integrator-comb-filter-in-matlab/#comment-25700</link>
		<dc:creator>VA</dc:creator>
		<pubDate>Mon, 12 Apr 2010 04:40:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.dsplog.com/2007/07/01/example-of-cascaded-integrator-comb-filter-in-matlab/#comment-25700</guid>
		<description>hello,
In this post krishna has worked on single stage Integrator and comb.
and its true that in  Hogenauer’s paper – “An economical class of digital filters for decimation and interpolation” he said about multistage implementation.
As we increase the number of stages the image/alias rejection will improve.
Here in krishna blog N=10 only refers to the number of samples in T duration.
I hope this will help.</description>
		<content:encoded><![CDATA[<p>hello,<br />
In this post krishna has worked on single stage Integrator and comb.<br />
and its true that in  Hogenauer’s paper – “An economical class of digital filters for decimation and interpolation” he said about multistage implementation.<br />
As we increase the number of stages the image/alias rejection will improve.<br />
Here in krishna blog N=10 only refers to the number of samples in T duration.<br />
I hope this will help.</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 01:12:41 -->
