<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/154229</link>
    <title>MATLAB Central Newsreader - how to use IFFT to reconstruct signal in a specific region t in [a, b]?</title>
    <description>Feed for thread: how to use IFFT to reconstruct signal in a specific region t in [a, b]?</description>
    <language>en-us</language>
    <copyright>&amp;copy;1994-2012 by MathWorks, Inc.</copyright>
    <webmaster>webmaster@mathworks.com</webmaster>
    <generator>MATLAB Central Newsreader</generator>
    <docs>http://blogs.law.harvard.edu/tech/rss</docs>
    <ttl>60</ttl>
    <image>
      <title>MathWorks</title>
      <url>http://www.mathworks.com/images/membrane_icon.gif</url>
    </image>
    <item>
      <pubDate>Thu, 09 Aug 2007 04:19:46 -0400</pubDate>
      <title>how to use IFFT to reconstruct signal in a specific region t in [a, b]?</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/154229#386932</link>
      <author>Luna Moon</author>
      <description>Hi all,&lt;br&gt;
&lt;br&gt;
Let's say by doing IFFT on F(v), which is the spectrum of signal f(t), I was &lt;br&gt;
able to reconstruct f(t), for t in [0, T].&lt;br&gt;
&lt;br&gt;
Now I want to ask is there a way to do another IFFT to reconstruct the &lt;br&gt;
specific part f(t) for t in [T, 2T], without any waste of previous &lt;br&gt;
calculations?&lt;br&gt;
&lt;br&gt;
Basically, I want to ask, if it is possible to use IFFT to reconstruct to &lt;br&gt;
any slot t in [a, b] in the time domain for signal f(t)?&lt;br&gt;
&lt;br&gt;
Thanks a lot! </description>
    </item>
    <item>
      <pubDate>Thu, 09 Aug 2007 05:59:48 -0400</pubDate>
      <title>Re: how to use IFFT to reconstruct signal in a specific region t in [a, b]?</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/154229#386936</link>
      <author>Fred Marshall</author>
      <description>&lt;br&gt;
&quot;Luna Moon&quot; &amp;lt;lunamoonmoon@gmail.com&amp;gt; wrote in message &lt;br&gt;
news:f9e4pe$klc$1@news.Stanford.EDU...&lt;br&gt;
&amp;gt; Hi all,&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Let's say by doing IFFT on F(v), which is the spectrum of signal f(t), I &lt;br&gt;
&amp;gt; was able to reconstruct f(t), for t in [0, T].&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Now I want to ask is there a way to do another IFFT to reconstruct the &lt;br&gt;
&amp;gt; specific part f(t) for t in [T, 2T], without any waste of previous &lt;br&gt;
&amp;gt; calculations?&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Basically, I want to ask, if it is possible to use IFFT to reconstruct to &lt;br&gt;
&amp;gt; any slot t in [a, b] in the time domain for signal f(t)?&lt;br&gt;
&lt;br&gt;
The answer is: &quot;it depends&quot;.&lt;br&gt;
&lt;br&gt;
First of all, since you're doing an IFFT, the spectral information is given &lt;br&gt;
at discrete frequencies, the time series must be periodic. And, since the &lt;br&gt;
time sequence resulting is also discrete, the corresponding spectral &lt;br&gt;
sequence is periodic.&lt;br&gt;
&lt;br&gt;
So, once you've done the IFFT, you have generated one period of a periodic / &lt;br&gt;
infinite time series.  After that, you should be able to figure out the &lt;br&gt;
values for any other time period ... but it's a bit of a trivial exercise &lt;br&gt;
when you know it's periodic isn't it?&lt;br&gt;
&lt;br&gt;
In your opening description, you left out an important step:&lt;br&gt;
In doing the IFFT, you generate a time sequence in [0,T] but have not yet &lt;br&gt;
reconstructed it on t (i.e. have not made it continuous which is usually &lt;br&gt;
what &quot;reconstruction&quot; means).&lt;br&gt;
&lt;br&gt;
Proper reconstruction might use a Dirichlet kernel (which is periodic) - so &lt;br&gt;
once the reconstruction is done, you have the periodic f(t) for all t.&lt;br&gt;
&lt;br&gt;
Fred </description>
    </item>
    <item>
      <pubDate>Thu, 09 Aug 2007 12:43:02 -0400</pubDate>
      <title>Re: how to use IFFT to reconstruct signal in a specific region t in [a, b]?</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/154229#386989</link>
      <author> julius</author>
      <description>On Aug 8, 11:19 pm, &quot;Luna Moon&quot; &amp;lt;lunamoonm...@gmail.com&amp;gt; wrote:&lt;br&gt;
&amp;gt; Hi all,&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Let's say by doing IFFT on F(v), which is the spectrum of signal f(t), I was&lt;br&gt;
&amp;gt; able to reconstruct f(t), for t in [0, T].&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Now I want to ask is there a way to do another IFFT to reconstruct the&lt;br&gt;
&amp;gt; specific part f(t) for t in [T, 2T], without any waste of previous&lt;br&gt;
&amp;gt; calculations?&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Basically, I want to ask, if it is possible to use IFFT to reconstruct to&lt;br&gt;
&amp;gt; any slot t in [a, b] in the time domain for signal f(t)?&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Thanks a lot!&lt;br&gt;
&lt;br&gt;
You can use the Discrete Fourier Transform (DFT) to do it.&lt;br&gt;
By definition, the FFT is restricted to the &quot;Fast&quot; version of&lt;br&gt;
the DFT.&lt;br&gt;
&lt;br&gt;
By the way, did you realize that relating a signal via the DFT&lt;br&gt;
or FFT implicitly assume periodicity in both time and frequency?&lt;br&gt;
I can't understand your notation, but if my guess is correct you&lt;br&gt;
will find that x[n] is periodic in N.  In your notation somehow&lt;br&gt;
you are using continuous time t, which is incorrect.&lt;br&gt;
&lt;br&gt;
I hate to nitpick, but these points can be important.&lt;br&gt;
Julius</description>
    </item>
    <item>
      <pubDate>Thu, 09 Aug 2007 20:37:42 -0400</pubDate>
      <title>Re: how to use IFFT to reconstruct signal in a specific region t in [a, b]?</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/154229#387099</link>
      <author> &quot;Ron N.</author>
      <description>On Aug 9, 5:43 am, julius &amp;lt;juli...@gmail.com&amp;gt; wrote:&lt;br&gt;
&amp;gt; On Aug 8, 11:19 pm, &quot;Luna Moon&quot; &amp;lt;lunamoonm...@gmail.com&amp;gt; wrote:&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; Hi all,&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; Let's say by doing IFFT on F(v), which is the spectrum of signal f(t), I was&lt;br&gt;
&amp;gt; &amp;gt; able to reconstruct f(t), for t in [0, T].&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; Now I want to ask is there a way to do another IFFT to reconstruct the&lt;br&gt;
&amp;gt; &amp;gt; specific part f(t) for t in [T, 2T], without any waste of previous&lt;br&gt;
&amp;gt; &amp;gt; calculations?&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; Basically, I want to ask, if it is possible to use IFFT to reconstruct to&lt;br&gt;
&amp;gt; &amp;gt; any slot t in [a, b] in the time domain for signal f(t)?&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; Thanks a lot!&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; You can use the Discrete Fourier Transform (DFT) to do it.&lt;br&gt;
&amp;gt; By definition, the FFT is restricted to the &quot;Fast&quot; version of&lt;br&gt;
&amp;gt; the DFT.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; By the way, did you realize that relating a signal via the DFT&lt;br&gt;
&amp;gt; or FFT implicitly assume periodicity in both time and frequency?&lt;br&gt;
&amp;gt; I can't understand your notation, but if my guess is correct you&lt;br&gt;
&amp;gt; will find that x[n] is periodic in N.  In your notation somehow&lt;br&gt;
&amp;gt; you are using continuous time t, which is incorrect.&lt;br&gt;
&lt;br&gt;
Doesn't an ordinary infinitely periodic and bandlimited&lt;br&gt;
continuous function have a finite discrete spectrum F(w),&lt;br&gt;
from which it is possible to completely reconstruct&lt;br&gt;
f(t) in continuous time?  (and approached by several&lt;br&gt;
methods).</description>
    </item>
    <item>
      <pubDate>Thu, 09 Aug 2007 21:34:02 -0400</pubDate>
      <title>Re: how to use IFFT to reconstruct signal in a specific region t in [a, b]?</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/154229#387109</link>
      <author> julius</author>
      <description>On Aug 9, 3:37 pm, &quot;Ron N.&quot; &amp;lt;rhnlo...@yahoo.com&amp;gt; wrote:&lt;br&gt;
&amp;gt; On Aug 9, 5:43 am, julius &amp;lt;juli...@gmail.com&amp;gt; wrote:&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; On Aug 8, 11:19 pm, &quot;Luna Moon&quot; &amp;lt;lunamoonm...@gmail.com&amp;gt; wrote:&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; Hi all,&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; Let's say by doing IFFT on F(v), which is the spectrum of signal f(t), I was&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; able to reconstruct f(t), for t in [0, T].&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; Now I want to ask is there a way to do another IFFT to reconstruct the&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; specific part f(t) for t in [T, 2T], without any waste of previous&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; calculations?&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; Basically, I want to ask, if it is possible to use IFFT to reconstruct to&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; any slot t in [a, b] in the time domain for signal f(t)?&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; Thanks a lot!&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; You can use the Discrete Fourier Transform (DFT) to do it.&lt;br&gt;
&amp;gt; &amp;gt; By definition, the FFT is restricted to the &quot;Fast&quot; version of&lt;br&gt;
&amp;gt; &amp;gt; the DFT.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; By the way, did you realize that relating a signal via the DFT&lt;br&gt;
&amp;gt; &amp;gt; or FFT implicitly assume periodicity in both time and frequency?&lt;br&gt;
&amp;gt; &amp;gt; I can't understand your notation, but if my guess is correct you&lt;br&gt;
&amp;gt; &amp;gt; will find that x[n] is periodic in N.  In your notation somehow&lt;br&gt;
&amp;gt; &amp;gt; you are using continuous time t, which is incorrect.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Doesn't an ordinary infinitely periodic and bandlimited&lt;br&gt;
&amp;gt; continuous function have a finite discrete spectrum F(w),&lt;br&gt;
&amp;gt; from which it is possible to completely reconstruct&lt;br&gt;
&amp;gt; f(t) in continuous time?  (and approached by several&lt;br&gt;
&amp;gt; methods).&lt;br&gt;
&lt;br&gt;
I know that, but the author specifically said &quot;iFFT&quot;.  Either&lt;br&gt;
the person is wrong in saying &quot;iFFT&quot; instead of &quot;Fourier&lt;br&gt;
series&quot; or in using &quot;t&quot; versus &quot;n&quot;.  Unless there is a &quot;fast&quot;&lt;br&gt;
Fourier series computation in continuous-time that has&lt;br&gt;
been invented ...</description>
    </item>
    <item>
      <pubDate>Thu, 09 Aug 2007 23:31:07 -0400</pubDate>
      <title>Re: how to use IFFT to reconstruct signal in a specific region t in [a, b]?</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/154229#387129</link>
      <author> &quot;Ron N.</author>
      <description>On Aug 9, 2:34 pm, julius &amp;lt;juli...@gmail.com&amp;gt; wrote:&lt;br&gt;
&amp;gt; On Aug 9, 3:37 pm, &quot;Ron N.&quot; &amp;lt;rhnlo...@yahoo.com&amp;gt; wrote:&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; On Aug 9, 5:43 am, julius &amp;lt;juli...@gmail.com&amp;gt; wrote:&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; On Aug 8, 11:19 pm, &quot;Luna Moon&quot; &amp;lt;lunamoonm...@gmail.com&amp;gt; wrote:&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; Hi all,&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; Let's say by doing IFFT on F(v), which is the spectrum of signal f(t), I was&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; able to reconstruct f(t), for t in [0, T].&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; Now I want to ask is there a way to do another IFFT to reconstruct the&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; specific part f(t) for t in [T, 2T], without any waste of previous&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; calculations?&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; Basically, I want to ask, if it is possible to use IFFT to reconstruct to&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; any slot t in [a, b] in the time domain for signal f(t)?&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; Thanks a lot!&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; You can use the Discrete Fourier Transform (DFT) to do it.&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; By definition, the FFT is restricted to the &quot;Fast&quot; version of&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; the DFT.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; By the way, did you realize that relating a signal via the DFT&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; or FFT implicitly assume periodicity in both time and frequency?&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; I can't understand your notation, but if my guess is correct you&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; will find that x[n] is periodic in N.  In your notation somehow&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; you are using continuous time t, which is incorrect.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; Doesn't an ordinary infinitely periodic and bandlimited&lt;br&gt;
&amp;gt; &amp;gt; continuous function have a finite discrete spectrum F(w),&lt;br&gt;
&amp;gt; &amp;gt; from which it is possible to completely reconstruct&lt;br&gt;
&amp;gt; &amp;gt; f(t) in continuous time?  (and approached by several&lt;br&gt;
&amp;gt; &amp;gt; methods).&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; I know that, but the author specifically said &quot;iFFT&quot;.  Either&lt;br&gt;
&amp;gt; the person is wrong in saying &quot;iFFT&quot; instead of &quot;Fourier&lt;br&gt;
&amp;gt; series&quot; or in using &quot;t&quot; versus &quot;n&quot;.  Unless there is a &quot;fast&quot;&lt;br&gt;
&amp;gt; Fourier series computation in continuous-time that has&lt;br&gt;
&amp;gt; been invented ...&lt;br&gt;
&lt;br&gt;
Yes, but a discrete iFFT can be used as part of method&lt;br&gt;
to approximately (re)construct a continuous time function,&lt;br&gt;
given some assumptions, as per above.  Might not be&lt;br&gt;
the most direct or efficient method... or what the OP&lt;br&gt;
meant as opposed to what the OP wrote (or what the&lt;br&gt;
homework question asked :)</description>
    </item>
    <item>
      <pubDate>Fri, 10 Aug 2007 13:24:24 -0400</pubDate>
      <title>Re: how to use IFFT to reconstruct signal in a specific region t in [a, b]?</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/154229#387217</link>
      <author> dspguy2@netscape.net</author>
      <description>On Aug 9, 12:19 am, &quot;Luna Moon&quot; &amp;lt;lunamoonm...@gmail.com&amp;gt; wrote:&lt;br&gt;
&amp;gt; Hi all,&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Let's say by doing IFFT on F(v), which is the spectrum of signal f(t), I was&lt;br&gt;
&amp;gt; able to reconstruct f(t), for t in [0, T].&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Now I want to ask is there a way to do another IFFT to reconstruct the&lt;br&gt;
&amp;gt; specific part f(t) for t in [T, 2T], without any waste of previous&lt;br&gt;
&amp;gt; calculations?&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Basically, I want to ask, if it is possible to use IFFT to reconstruct to&lt;br&gt;
&amp;gt; any slot t in [a, b] in the time domain for signal f(t)?&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Thanks a lot!&lt;br&gt;
&lt;br&gt;
You can use Chirp Z Transform methods to evaluate portions of either&lt;br&gt;
the frequency or time domain. The CZT is discussed in the O&amp;S books.&lt;br&gt;
&lt;br&gt;
Cheers,&lt;br&gt;
David</description>
    </item>
    <item>
      <pubDate>Sat, 11 Aug 2007 19:45:50 -0400</pubDate>
      <title>Re: how to use IFFT to reconstruct signal in a specific region t in [a, b]?</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/154229#387373</link>
      <author> Luna Moon</author>
      <description>On Aug 9, 8:43 am, julius &amp;lt;juli...@gmail.com&amp;gt; wrote:&lt;br&gt;
&amp;gt; On Aug 8, 11:19 pm, &quot;Luna Moon&quot; &amp;lt;lunamoonm...@gmail.com&amp;gt; wrote:&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; Hi all,&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; Let's say by doing IFFT on F(v), which is the spectrum of signal f(t), I was&lt;br&gt;
&amp;gt; &amp;gt; able to reconstruct f(t), for t in [0, T].&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; Now I want to ask is there a way to do another IFFT to reconstruct the&lt;br&gt;
&amp;gt; &amp;gt; specific part f(t) for t in [T, 2T], without any waste of previous&lt;br&gt;
&amp;gt; &amp;gt; calculations?&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; Basically, I want to ask, if it is possible to use IFFT to reconstruct to&lt;br&gt;
&amp;gt; &amp;gt; any slot t in [a, b] in the time domain for signal f(t)?&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; Thanks a lot!&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; You can use the Discrete Fourier Transform (DFT) to do it.&lt;br&gt;
&amp;gt; By definition, the FFT is restricted to the &quot;Fast&quot; version of&lt;br&gt;
&amp;gt; the DFT.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; By the way, did you realize that relating a signal via the DFT&lt;br&gt;
&amp;gt; or FFT implicitly assume periodicity in both time and frequency?&lt;br&gt;
&amp;gt; I can't understand your notation, but if my guess is correct you&lt;br&gt;
&amp;gt; will find that x[n] is periodic in N.  In your notation somehow&lt;br&gt;
&amp;gt; you are using continuous time t, which is incorrect.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; I hate to nitpick, but these points can be important.&lt;br&gt;
&amp;gt; Julius&lt;br&gt;
&lt;br&gt;
thanks! Of course I realize that DFT/FFT assumes the signal is&lt;br&gt;
periodic. My question is related to the window of one such period. Yes&lt;br&gt;
DFT/FFT has a focal window, and everything outside this window is&lt;br&gt;
assumed to be periodic extension of the content within this window.&lt;br&gt;
But in a reconstruction of time-domain signal from spectrum using&lt;br&gt;
Inverse FFT/DFT, what is the default focal window? And how do we shift&lt;br&gt;
the focal window? Eventually I want to be able to slide the window&lt;br&gt;
along all the time-domain signal and focus on one part of the signal&lt;br&gt;
at a time.&lt;br&gt;
&lt;br&gt;
How to do that? Thanks a lot!</description>
    </item>
    <item>
      <pubDate>Sat, 11 Aug 2007 19:46:34 -0400</pubDate>
      <title>Re: how to use IFFT to reconstruct signal in a specific region t in [a, b]?</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/154229#387374</link>
      <author> Luna Moon</author>
      <description>On Aug 10, 9:24 am, dspg...@netscape.net wrote:&lt;br&gt;
&amp;gt; On Aug 9, 12:19 am, &quot;Luna Moon&quot; &amp;lt;lunamoonm...@gmail.com&amp;gt; wrote:&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; Hi all,&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; Let's say by doing IFFT on F(v), which is the spectrum of signal f(t), I was&lt;br&gt;
&amp;gt; &amp;gt; able to reconstruct f(t), for t in [0, T].&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; Now I want to ask is there a way to do another IFFT to reconstruct the&lt;br&gt;
&amp;gt; &amp;gt; specific part f(t) for t in [T, 2T], without any waste of previous&lt;br&gt;
&amp;gt; &amp;gt; calculations?&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; Basically, I want to ask, if it is possible to use IFFT to reconstruct to&lt;br&gt;
&amp;gt; &amp;gt; any slot t in [a, b] in the time domain for signal f(t)?&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; Thanks a lot!&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; You can use Chirp Z Transform methods to evaluate portions of either&lt;br&gt;
&amp;gt; the frequency or time domain. The CZT is discussed in the O&amp;S books.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Cheers,&lt;br&gt;
&amp;gt; David&lt;br&gt;
&lt;br&gt;
Thanks David, is CZT for the following usage?&lt;br&gt;
---------------------&lt;br&gt;
I knew that DFT/FFT assumes the signal is periodic. My question is&lt;br&gt;
related to the window of one such period. Yes DFT/FFT has a focal&lt;br&gt;
window, and everything outside this window is assumed to be periodic&lt;br&gt;
extension of the content within this window. But in a reconstruction&lt;br&gt;
of time-domain signal from spectrum using Inverse FFT/DFT, what is the&lt;br&gt;
default focal window? And how do we shift the focal window? Eventually&lt;br&gt;
I want to be able to slide the window along all the time-domain signal&lt;br&gt;
and focus on one part of the signal at a time.&lt;br&gt;
&lt;br&gt;
How to do that? Thanks a lot!</description>
    </item>
  </channel>
</rss>

