<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/264670</link>
    <title>MATLAB Central Newsreader - About FFT and Even Function</title>
    <description>Feed for thread: About FFT and Even Function</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>Sun, 01 Nov 2009 05:42:02 -0500</pubDate>
      <title>About FFT and Even Function</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/264670#691230</link>
      <author>Oscar </author>
      <description>Hello everyone,&lt;br&gt;
&lt;br&gt;
I have a doubt about FFT function on Matlab. I know when I have an even and real function its FFT give only real values. But, when I calculate, for  example, the FFT of a cosine function result real and imaginary values. I think I making a mistake on my interpretation of this result. Anyone can help me please :)&lt;br&gt;
&lt;br&gt;
Thanks and sorry for my english!!!</description>
    </item>
    <item>
      <pubDate>Sun, 01 Nov 2009 05:56:41 -0500</pubDate>
      <title>Re: About FFT and Even Function</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/264670#691232</link>
      <author>dbd</author>
      <description>On Oct 31, 10:42 pm, &quot;Oscar &quot; &amp;lt;oscarodrig...@yahoo.es&amp;gt; wrote:&lt;br&gt;
&amp;gt; Hello everyone,&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; I have a doubt about FFT function on Matlab. I know when I have an even and real function its FFT give only real values. But, when I calculate, for  example, the FFT of a cosine function result real and imaginary values. I think I making a mistake on my interpretation of this result. Anyone can help me please :)&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Thanks and sorry for my english!!!&lt;br&gt;
&lt;br&gt;
There are often mistakes made confusing 'symmetry' with 'fft-&lt;br&gt;
evenness'. For examples, compare the difference between Matlab's&lt;br&gt;
'symmetric' and 'periodic' forms of window functions. Use the windows&lt;br&gt;
as the real signals to be transformed.&lt;br&gt;
&lt;br&gt;
A good reference is fred harris' paper on windows. Look at the first&lt;br&gt;
column of page 173. The paper is available a number of places. One is:&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://www.utdallas.edu/~cpb021000/EE%204361/Great%20DSP%20Papers/Harris%20on%20Windows.pdf&quot;&gt;http://www.utdallas.edu/~cpb021000/EE%204361/Great%20DSP%20Papers/Harris%20on%20Windows.pdf&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
Dale B. Dalrymple</description>
    </item>
    <item>
      <pubDate>Sun, 01 Nov 2009 07:11:25 -0500</pubDate>
      <title>Re: About FFT and Even Function</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/264670#691245</link>
      <author>Nasser M. Abbasi</author>
      <description>&lt;br&gt;
&quot;Oscar &quot; &amp;lt;oscarodrigo3k@yahoo.es&amp;gt; wrote in message &lt;br&gt;
news:hcj73a$b5$1@fred.mathworks.com...&lt;br&gt;
&amp;gt; Hello everyone,&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; I have a doubt about FFT function on Matlab. I know when I have an even &lt;br&gt;
&amp;gt; and real function its FFT give only real values. But, when I calculate, &lt;br&gt;
&amp;gt; for  example, the FFT of a cosine function result real and imaginary &lt;br&gt;
&amp;gt; values. I think I making a mistake on my interpretation of this result. &lt;br&gt;
&amp;gt; Anyone can help me please :)&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Thanks and sorry for my english!!!&lt;br&gt;
&lt;br&gt;
If the data sequence itself is real and even (i.e. x[n]=x[N-n]) where N is &lt;br&gt;
the sample points, then the discrete fourier transform (which fft is an &lt;br&gt;
implementation of) should result in all real values.  i.e. g[k] for k=1..N &lt;br&gt;
should be real values.&lt;br&gt;
&lt;br&gt;
Is this the case with your sampled data?&lt;br&gt;
&lt;br&gt;
--Nasser</description>
    </item>
    <item>
      <pubDate>Sun, 01 Nov 2009 15:37:33 -0500</pubDate>
      <title>Re: About FFT and Even Function</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/264670#691285</link>
      <author>dbd</author>
      <description>On Oct 31, 11:11 pm, &quot;Nasser M. Abbasi&quot; &amp;lt;n...@12000.org&amp;gt; wrote:&lt;br&gt;
&amp;gt; ...&lt;br&gt;
&amp;gt; If the data sequence itself is real and even (i.e. x[n]=x[N-n]) where N is&lt;br&gt;
&amp;gt; ...&lt;br&gt;
&amp;gt; --Nasser&lt;br&gt;
&lt;br&gt;
Let's try that:&lt;br&gt;
&lt;br&gt;
&amp;gt;&amp;gt; % Nassar's formula, N = 6, x[n] = x[N-n] for n=1:N-1&lt;br&gt;
&amp;gt;&amp;gt; fft([1 2 3 2 1 0])'&lt;br&gt;
ans =&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;9.0000&lt;br&gt;
&amp;nbsp;&amp;nbsp;-2.0000 + 3.4641i&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;0&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;1.0000&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;0&lt;br&gt;
&amp;nbsp;&amp;nbsp;-2.0000 - 3.4641i&lt;br&gt;
&amp;gt;&amp;gt; % &quot;FFT-even&quot; version,  N = 6, x[n] = x[N-n+1] for n=2:N&lt;br&gt;
&amp;gt;&amp;gt; fft([0 1 2 3 2 1])'&lt;br&gt;
ans =&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;9&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;-4&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;0&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;-1&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;0&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;-4&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&lt;br&gt;
Dale B. Dalrymple</description>
    </item>
    <item>
      <pubDate>Sun, 01 Nov 2009 16:52:20 -0500</pubDate>
      <title>Re: About FFT and Even Function</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/264670#691297</link>
      <author>Nasser M. Abbasi</author>
      <description>&lt;br&gt;
&quot;dbd&quot; &amp;lt;dbd@ieee.org&amp;gt; wrote in message &lt;br&gt;
news:a220a52b-a008-4b16-acc7-0656a03275b3@w37g2000prg.googlegroups.com...&lt;br&gt;
&amp;gt; On Oct 31, 11:11 pm, &quot;Nasser M. Abbasi&quot; &amp;lt;n...@12000.org&amp;gt; wrote:&lt;br&gt;
&amp;gt;&amp;gt; ...&lt;br&gt;
&amp;gt;&amp;gt; If the data sequence itself is real and even (i.e. x[n]=x[N-n]) where N &lt;br&gt;
&amp;gt;&amp;gt; is&lt;br&gt;
&amp;gt;&amp;gt; ...&lt;br&gt;
&amp;gt;&amp;gt; --Nasser&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Let's try that:&lt;br&gt;
&amp;gt;&lt;br&gt;
&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; % Nassar's formula, N = 6, x[n] = x[N-n] for n=1:N-1&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; fft([1 2 3 2 1 0])'&lt;br&gt;
&amp;gt; ans =&lt;br&gt;
&amp;gt;   9.0000&lt;br&gt;
&amp;gt;  -2.0000 + 3.4641i&lt;br&gt;
&amp;gt;        0&lt;br&gt;
&amp;gt;   1.0000&lt;br&gt;
&amp;gt;        0&lt;br&gt;
&amp;gt;  -2.0000 - 3.4641i&lt;br&gt;
&lt;br&gt;
Ofcourse, I said above n=1:N-1 which is clearly wrong (the number of points &lt;br&gt;
is N now N-1 points), I meant to write n=0:N-1 to make it N points. I made a &lt;br&gt;
typo starting it from 1 not 0.&lt;br&gt;
&lt;br&gt;
May be now you can try my formula? ;)  but watch for the index.&lt;br&gt;
&lt;br&gt;
--Nasser</description>
    </item>
    <item>
      <pubDate>Sun, 01 Nov 2009 16:58:01 -0500</pubDate>
      <title>Re: About FFT and Even Function</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/264670#691299</link>
      <author>Oscar </author>
      <description>dbd &amp;lt;dbd@ieee.org&amp;gt; wrote in message &amp;lt;a220a52b-a008-4b16-acc7-0656a03275b3@w37g2000prg.googlegroups.com&amp;gt;...&lt;br&gt;
&amp;gt; On Oct 31, 11:11 pm, &quot;Nasser M. Abbasi&quot; &amp;lt;n...@12000.org&amp;gt; wrote:&lt;br&gt;
&amp;gt; &amp;gt; ...&lt;br&gt;
&amp;gt; &amp;gt; If the data sequence itself is real and even (i.e. x[n]=x[N-n]) where N is&lt;br&gt;
&amp;gt; &amp;gt; ...&lt;br&gt;
&amp;gt; &amp;gt; --Nasser&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Let's try that:&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; &amp;gt;&amp;gt; % Nassar's formula, N = 6, x[n] = x[N-n] for n=1:N-1&lt;br&gt;
&amp;gt; &amp;gt;&amp;gt; fft([1 2 3 2 1 0])'&lt;br&gt;
&amp;gt; ans =&lt;br&gt;
&amp;gt;    9.0000&lt;br&gt;
&amp;gt;   -2.0000 + 3.4641i&lt;br&gt;
&amp;gt;         0&lt;br&gt;
&amp;gt;    1.0000&lt;br&gt;
&amp;gt;         0&lt;br&gt;
&amp;gt;   -2.0000 - 3.4641i&lt;br&gt;
&amp;gt; &amp;gt;&amp;gt; % &quot;FFT-even&quot; version,  N = 6, x[n] = x[N-n+1] for n=2:N&lt;br&gt;
&amp;gt; &amp;gt;&amp;gt; fft([0 1 2 3 2 1])'&lt;br&gt;
&amp;gt; ans =&lt;br&gt;
&amp;gt;      9&lt;br&gt;
&amp;gt;     -4&lt;br&gt;
&amp;gt;      0&lt;br&gt;
&amp;gt;     -1&lt;br&gt;
&amp;gt;      0&lt;br&gt;
&amp;gt;     -4&lt;br&gt;
&amp;gt; &amp;gt;&amp;gt;&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Dale B. Dalrymple&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
ohhh!! Thank you for your help!!!!, :)</description>
    </item>
    <item>
      <pubDate>Sun, 01 Nov 2009 17:37:16 -0500</pubDate>
      <title>Re: About FFT and Even Function</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/264670#691308</link>
      <author>dbd</author>
      <description>On Nov 1, 8:52 am, &quot;Nasser M. Abbasi&quot; &amp;lt;n...@12000.org&amp;gt; wrote:&lt;br&gt;
&amp;gt; &quot;dbd&quot; &amp;lt;d...@ieee.org&amp;gt; wrote in message&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; news:a220a52b-a008-4b16-acc7-0656a03275b3@w37g2000prg.googlegroups.com...&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; On Oct 31, 11:11 pm, &quot;Nasser M. Abbasi&quot; &amp;lt;n...@12000.org&amp;gt; wrote:&lt;br&gt;
&amp;gt; &amp;gt;&amp;gt; ...&lt;br&gt;
&amp;gt; &amp;gt;&amp;gt; If the data sequence itself is real and even (i.e. x[n]=x[N-n]) where N&lt;br&gt;
&amp;gt; &amp;gt;&amp;gt; is&lt;br&gt;
&amp;gt; &amp;gt;&amp;gt; ...&lt;br&gt;
&amp;gt; &amp;gt;&amp;gt; --Nasser&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; Let's try that:&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt;&amp;gt;&amp;gt; % Nassar's formula, N = 6, x[n] = x[N-n] for n=1:N-1&lt;br&gt;
&amp;gt; &amp;gt;&amp;gt;&amp;gt; fft([1 2 3 2 1 0])'&lt;br&gt;
&amp;gt; &amp;gt; ans =&lt;br&gt;
&amp;gt; &amp;gt;   9.0000&lt;br&gt;
&amp;gt; &amp;gt;  -2.0000 + 3.4641i&lt;br&gt;
&amp;gt; &amp;gt;        0&lt;br&gt;
&amp;gt; &amp;gt;   1.0000&lt;br&gt;
&amp;gt; &amp;gt;        0&lt;br&gt;
&amp;gt; &amp;gt;  -2.0000 - 3.4641i&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Ofcourse, I said above n=1:N-1 which is clearly wrong (the number of points&lt;br&gt;
&amp;gt; is N now N-1 points), I meant to write n=0:N-1 to make it N points. I made a&lt;br&gt;
&amp;gt; typo starting it from 1 not 0.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; May be now you can try my formula? ;)  but watch for the index.&lt;br&gt;
&lt;br&gt;
No, Matlab indices start at 1. I applied your formula to 1:N-1 because&lt;br&gt;
it doesn't work for N, but I did fft a set of N values. (These are&lt;br&gt;
samples of a triangular waveform.)&lt;br&gt;
&lt;br&gt;
Anyway, did you mean something like this?&lt;br&gt;
&lt;br&gt;
&amp;gt;&amp;gt; fft([0 1 2 3 2 1 0])'&lt;br&gt;
ans =&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;9.0000&lt;br&gt;
&amp;nbsp;&amp;nbsp;-4.5489 + 2.1906i&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;0.1920 - 0.2408i&lt;br&gt;
&amp;nbsp;&amp;nbsp;-0.1431 + 0.6270i&lt;br&gt;
&amp;nbsp;&amp;nbsp;-0.1431 - 0.6270i&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;0.1920 + 0.2408i&lt;br&gt;
&amp;nbsp;&amp;nbsp;-4.5489 - 2.1906i&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&lt;br&gt;
These are not real. The point is that symmetry is not the same as &quot;fft-&lt;br&gt;
evenness&quot;.&lt;br&gt;
&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; --Nasser&lt;br&gt;
&lt;br&gt;
Dale B. Dalrymple</description>
    </item>
    <item>
      <pubDate>Sun, 01 Nov 2009 19:19:26 -0500</pubDate>
      <title>Re: About FFT and Even Function</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/264670#691333</link>
      <author>Nasser M. Abbasi</author>
      <description>&lt;br&gt;
&quot;dbd&quot; &amp;lt;dbd@ieee.org&amp;gt; wrote in message &lt;br&gt;
news:e605aa13-a63b-4032-8b9d-039cdd5efa7a@b36g2000prf.googlegroups.com...&lt;br&gt;
&amp;gt;&lt;br&gt;
&lt;br&gt;
&amp;gt; No, Matlab indices start at 1.&lt;br&gt;
&lt;br&gt;
Thanks for letting me know that, I'll have to remember that.&lt;br&gt;
&lt;br&gt;
&amp;gt;I applied your formula to 1:N-1 because&lt;br&gt;
&amp;gt; it doesn't work for N, but I did fft a set of N values. (These are&lt;br&gt;
&amp;gt; samples of a triangular waveform.)&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Anyway, did you mean something like this?&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; fft([0 1 2 3 2 1 0])'&lt;br&gt;
&amp;gt; ans =&lt;br&gt;
&amp;gt;   9.0000&lt;br&gt;
&amp;gt;  -4.5489 + 2.1906i&lt;br&gt;
&amp;gt;   0.1920 - 0.2408i&lt;br&gt;
&amp;gt;  -0.1431 + 0.6270i&lt;br&gt;
&amp;gt;  -0.1431 - 0.6270i&lt;br&gt;
&amp;gt;   0.1920 + 0.2408i&lt;br&gt;
&amp;gt;  -4.5489 - 2.1906i&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
No, that is not what I mean. In the above, you have N=7, but &quot;my formula&quot; &lt;br&gt;
said&lt;br&gt;
&lt;br&gt;
x(n)=x(N-n)  for n=0..N-1   which means x(7) is not valid part of the &lt;br&gt;
sequence since 7 is more than 7-1 which is 6. So the sequence should have &lt;br&gt;
been&lt;br&gt;
&lt;br&gt;
x(0)=x(7)   (n=0 case)&lt;br&gt;
x(1)=x(6)   (n=1 case)&lt;br&gt;
x(2)=x(5)   (n=2 case)&lt;br&gt;
x(3)=x(4)   (n=3 case)&lt;br&gt;
&lt;br&gt;
So, assume, using your numbers, that  x(0)=0, x(1)=1, x(2)=2, x(3)=3 one &lt;br&gt;
gets&lt;br&gt;
&lt;br&gt;
x(0)=0&lt;br&gt;
x(1)=1&lt;br&gt;
x(2)=2&lt;br&gt;
x(3)=3&lt;br&gt;
x(4)=3&lt;br&gt;
x(5)=2&lt;br&gt;
x(6)=1  and you STOP here, since n goes only up to N-1 whichis 6.&lt;br&gt;
&lt;br&gt;
So now the x sequence is  [0,1,2,3,3,2,1]&lt;br&gt;
&lt;br&gt;
EDU&amp;gt;&amp;gt; fft([0 1 2 3 3 2 1])&lt;br&gt;
&lt;br&gt;
ans =&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;12.0000   -5.0489   -0.3080   -0.6431   -0.6431   -0.3080   -5.0489&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
So, I guess Nasser's formula works after all?  ;)&lt;br&gt;
&lt;br&gt;
--Nasser</description>
    </item>
    <item>
      <pubDate>Sun, 01 Nov 2009 23:11:04 -0500</pubDate>
      <title>Re: About FFT and Even Function</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/264670#691364</link>
      <author>dbd</author>
      <description>On Nov 1, 11:19 am, &quot;Nasser M. Abbasi&quot; &amp;lt;n...@12000.org&amp;gt; wrote:&lt;br&gt;
...&lt;br&gt;
&amp;gt; ...&lt;br&gt;
&amp;gt; No, that is not what I mean. In the above, you have N=7, but &quot;my formula&quot;&lt;br&gt;
&amp;gt; said&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; x(n)=x(N-n)  for n=0..N-1   which means x(7) is not valid part of the&lt;br&gt;
&lt;br&gt;
No. Your first post did not say n=0...N-1. In fact, you chose 1 to N&lt;br&gt;
for the fft indices.&lt;br&gt;
&lt;br&gt;
&amp;gt; sequence since 7 is more than 7-1 which is 6. So the sequence should have&lt;br&gt;
&amp;gt; been&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; x(0)=x(7)   (n=0 case)&lt;br&gt;
&amp;gt; x(1)=x(6)   (n=1 case)&lt;br&gt;
&amp;gt; x(2)=x(5)   (n=2 case)&lt;br&gt;
&amp;gt; x(3)=x(4)   (n=3 case)&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; So, assume, using your numbers, that  x(0)=0, x(1)=1, x(2)=2, x(3)=3 one&lt;br&gt;
&amp;gt; gets&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; x(0)=0&lt;br&gt;
&amp;gt; x(1)=1&lt;br&gt;
&amp;gt; x(2)=2&lt;br&gt;
&amp;gt; x(3)=3&lt;br&gt;
&amp;gt; x(4)=3&lt;br&gt;
&amp;gt; x(5)=2&lt;br&gt;
&amp;gt; x(6)=1  and you STOP here, since n goes only up to N-1 whichis 6.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; So now the x sequence is  [0,1,2,3,3,2,1]&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; EDU&amp;gt;&amp;gt; fft([0 1 2 3 3 2 1])&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; ans =&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;    12.0000   -5.0489   -0.3080   -0.6431   -0.6431   -0.3080   -5.0489&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; So, I guess Nasser's formula works after all?  ;)&lt;br&gt;
&lt;br&gt;
No Nasser, this is a Matlab group. There is no x(0). That is broken&lt;br&gt;
here. :(&lt;br&gt;
&lt;br&gt;
You gave 1 to N as the indices of the fft in your original post. That&lt;br&gt;
was the thing you got right at first. :)&lt;br&gt;
&lt;br&gt;
Your follow-up posts are different from the content of your original&lt;br&gt;
post. This demonstrates that &quot;There are often mistakes made&quot; as I&lt;br&gt;
originally posted to Oscar. Thank you for the extended&lt;br&gt;
demonstration. :)&lt;br&gt;
&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; --Nasser&lt;br&gt;
&lt;br&gt;
Dale B. Dalrymple</description>
    </item>
    <item>
      <pubDate>Thu, 03 Dec 2009 05:10:20 -0500</pubDate>
      <title>Re: About FFT and Even Function</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/264670#699363</link>
      <author>Sergei </author>
      <description>I thank  Dale B. Dalrymple very much for the link to paper and topic starter as well )). </description>
    </item>
  </channel>
</rss>

