<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/168462</link>
    <title>MATLAB Central Newsreader - fft sign?</title>
    <description>Feed for thread: fft sign?</description>
    <language>en-us</language>
    <copyright>&amp;copy;1994-2008 by The 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>The MathWorks</title>
      <url>http://www.mathworks.com/images/membrane_icon.gif</url>
    </image>
    <item>
      <pubDate>Tue, 29 Apr 2008 15:57:02 -0400</pubDate>
      <title>fft sign?</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/168462#429415</link>
      <author>h xu</author>
      <description>i've written a small and simple script to test the&lt;br&gt;
fft-function of matlab that transformates exp(i*n*pi/xmax *&lt;br&gt;
x) from xmin=-xmax to xmax. that should result in a&lt;br&gt;
kronecker delta with positive amplitude with value 1... but&lt;br&gt;
for some reason the amplitude is negative for odd n,... why&lt;br&gt;
is that?&lt;br&gt;
&lt;br&gt;
xmin=-5;&lt;br&gt;
xmax = 5;&lt;br&gt;
&lt;br&gt;
N= 2^8;&lt;br&gt;
dx = (xmax-xmin)/N;&lt;br&gt;
x = linspace(xmin,xmax,N);&lt;br&gt;
&lt;br&gt;
y= exp(3* i*pi/xmax *x);&lt;br&gt;
NFFT = 2^nextpow2(N);&lt;br&gt;
Y_ = fft(y,NFFT)*dx;&lt;br&gt;
q = [0:NFFT-1]/NFFT/dx*xmax*2;&lt;br&gt;
Y = Y_(1:NFFT)/dx/NFFT;&lt;br&gt;
plot(q,real(Y),'.b') &lt;br&gt;
&lt;br&gt;
&lt;br&gt;
</description>
    </item>
    <item>
      <pubDate>Tue, 29 Apr 2008 16:30:03 -0400</pubDate>
      <title>Re: fft sign?</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/168462#429419</link>
      <author>David </author>
      <description>"h xu" &amp;lt;quabla123@gmx.de&amp;gt; wrote in message &lt;br&gt;
&amp;lt;fv7gge$a1d$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; i've written a small and simple script to test the&lt;br&gt;
&amp;gt; fft-function of matlab that transformates exp&lt;br&gt;
(i*n*pi/xmax *&lt;br&gt;
&amp;gt; x) from xmin=-xmax to xmax. that should result in a&lt;br&gt;
&amp;gt; kronecker delta with positive amplitude with value 1... &lt;br&gt;
but&lt;br&gt;
&amp;gt; for some reason the amplitude is negative for odd n,... &lt;br&gt;
why&lt;br&gt;
&amp;gt; is that?&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; xmin=-5;&lt;br&gt;
&amp;gt; xmax = 5;&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; N= 2^8;&lt;br&gt;
&amp;gt; dx = (xmax-xmin)/N;&lt;br&gt;
&amp;gt; x = linspace(xmin,xmax,N);&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; y= exp(3* i*pi/xmax *x);&lt;br&gt;
&amp;gt; NFFT = 2^nextpow2(N);&lt;br&gt;
&amp;gt; Y_ = fft(y,NFFT)*dx;&lt;br&gt;
&amp;gt; q = [0:NFFT-1]/NFFT/dx*xmax*2;&lt;br&gt;
&amp;gt; Y = Y_(1:NFFT)/dx/NFFT;&lt;br&gt;
&amp;gt; plot(q,real(Y),'.b') &lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; &lt;br&gt;
&lt;br&gt;
try&lt;br&gt;
y= -1*exp(3* i*(pi/xmax) *x);&lt;br&gt;
</description>
    </item>
    <item>
      <pubDate>Wed, 30 Apr 2008 00:55:11 -0400</pubDate>
      <title>Re: fft sign?</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/168462#429486</link>
      <author>NZTideMan</author>
      <description>On Apr 30, 4:30=A0am, "David " &amp;lt;d...@bigcompany.com&amp;gt; wrote:&lt;br&gt;
&amp;gt; "h xu" &amp;lt;quabla...@gmx.de&amp;gt; wrote in message&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;lt;fv7gge$a1...@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; i've written a small and simple script to test the&lt;br&gt;
&amp;gt; &amp;gt; fft-function of matlab that transformates exp&lt;br&gt;
&amp;gt; (i*n*pi/xmax *&lt;br&gt;
&amp;gt; &amp;gt; x) from xmin=3D-xmax to xmax. that should result in a&lt;br&gt;
&amp;gt; &amp;gt; kronecker delta with positive amplitude with value 1...&lt;br&gt;
&amp;gt; but&lt;br&gt;
&amp;gt; &amp;gt; for some reason the amplitude is negative for odd n,...&lt;br&gt;
&amp;gt; why&lt;br&gt;
&amp;gt; &amp;gt; is that?&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; xmin=3D-5;&lt;br&gt;
&amp;gt; &amp;gt; xmax =3D 5;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; N=3D 2^8;&lt;br&gt;
&amp;gt; &amp;gt; dx =3D (xmax-xmin)/N;&lt;br&gt;
&amp;gt; &amp;gt; x =3D linspace(xmin,xmax,N);&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; y=3D exp(3* i*pi/xmax *x);&lt;br&gt;
&amp;gt; &amp;gt; NFFT =3D 2^nextpow2(N);&lt;br&gt;
&amp;gt; &amp;gt; Y_ =3D fft(y,NFFT)*dx;&lt;br&gt;
&amp;gt; &amp;gt; q =3D [0:NFFT-1]/NFFT/dx*xmax*2;&lt;br&gt;
&amp;gt; &amp;gt; Y =3D Y_(1:NFFT)/dx/NFFT;&lt;br&gt;
&amp;gt; &amp;gt; plot(q,real(Y),'.b')&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; try&lt;br&gt;
&amp;gt; y=3D -1*exp(3* i*(pi/xmax) *x);- Hide quoted text -&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; - Show quoted text -&lt;br&gt;
&lt;br&gt;
Try:&lt;br&gt;
plot(q,abs(Y),'.b')&lt;br&gt;
The sign of the real component (assuming the imaginary component is&lt;br&gt;
zero) is just telling you the phase.&lt;br&gt;
phase=3Dangle(Y)*180/pi;&lt;br&gt;
</description>
    </item>
    <item>
      <pubDate>Wed, 30 Apr 2008 12:07:01 -0400</pubDate>
      <title>Re: fft sign?</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/168462#429569</link>
      <author>h xu</author>
      <description>"h xu" &amp;lt;quabla123@gmx.de&amp;gt; wrote in message&lt;br&gt;
&amp;lt;fv7gge$a1d$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; i've written a small and simple script to test the&lt;br&gt;
&amp;gt; fft-function of matlab that transformates exp(i*n*pi/xmax *&lt;br&gt;
&amp;gt; x) from xmin=-xmax to xmax. that should result in a&lt;br&gt;
&amp;gt; kronecker delta with positive amplitude with value 1... but&lt;br&gt;
&amp;gt; for some reason the amplitude is negative for odd n,... why&lt;br&gt;
&amp;gt; is that?&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; xmin=-5;&lt;br&gt;
&amp;gt; xmax = 5;&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; N= 2^8;&lt;br&gt;
&amp;gt; dx = (xmax-xmin)/N;&lt;br&gt;
&amp;gt; x = linspace(xmin,xmax,N);&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; y= exp(3* i*pi/xmax *x);&lt;br&gt;
&amp;gt; NFFT = 2^nextpow2(N);&lt;br&gt;
&amp;gt; Y_ = fft(y,NFFT)*dx;&lt;br&gt;
&amp;gt; q = [0:NFFT-1]/NFFT/dx*xmax*2;&lt;br&gt;
&amp;gt; Y = Y_(1:NFFT)/dx/NFFT;&lt;br&gt;
&amp;gt; plot(q,real(Y),'.b') &lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; &lt;br&gt;
&lt;br&gt;
&lt;br&gt;
hm but i want to transformate functions, that transformated&lt;br&gt;
also have a imaginary part, so what do i need to do, to have&lt;br&gt;
the sign right for every value?&lt;br&gt;
</description>
    </item>
    <item>
      <pubDate>Wed, 30 Apr 2008 18:31:03 -0400</pubDate>
      <title>Re: fft sign?</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/168462#429647</link>
      <author>David </author>
      <description>"h xu" &amp;lt;quabla123@gmx.de&amp;gt; wrote in message &amp;lt;fv9nd5&lt;br&gt;
$9oe$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; "h xu" &amp;lt;quabla123@gmx.de&amp;gt; wrote in message&lt;br&gt;
&amp;gt; &amp;lt;fv7gge$a1d$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; &amp;gt; i've written a small and simple script to test the&lt;br&gt;
&amp;gt; &amp;gt; fft-function of matlab that transformates exp&lt;br&gt;
(i*n*pi/xmax *&lt;br&gt;
&amp;gt; &amp;gt; x) from xmin=-xmax to xmax. that should result in a&lt;br&gt;
&amp;gt; &amp;gt; kronecker delta with positive amplitude with value &lt;br&gt;
1... but&lt;br&gt;
&amp;gt; &amp;gt; for some reason the amplitude is negative for odd &lt;br&gt;
n,... why&lt;br&gt;
&amp;gt; &amp;gt; is that?&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; xmin=-5;&lt;br&gt;
&amp;gt; &amp;gt; xmax = 5;&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; N= 2^8;&lt;br&gt;
&amp;gt; &amp;gt; dx = (xmax-xmin)/N;&lt;br&gt;
&amp;gt; &amp;gt; x = linspace(xmin,xmax,N);&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; y= exp(3* i*pi/xmax *x);&lt;br&gt;
&amp;gt; &amp;gt; NFFT = 2^nextpow2(N);&lt;br&gt;
&amp;gt; &amp;gt; Y_ = fft(y,NFFT)*dx;&lt;br&gt;
&amp;gt; &amp;gt; q = [0:NFFT-1]/NFFT/dx*xmax*2;&lt;br&gt;
&amp;gt; &amp;gt; Y = Y_(1:NFFT)/dx/NFFT;&lt;br&gt;
&amp;gt; &amp;gt; plot(q,real(Y),'.b') &lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; hm but i want to transformate functions, that &lt;br&gt;
transformated&lt;br&gt;
&amp;gt; also have a imaginary part, so what do i need to do, to &lt;br&gt;
have&lt;br&gt;
&amp;gt; the sign right for every value?&lt;br&gt;
&lt;br&gt;
try:&lt;br&gt;
y= -1*exp(3* i*(pi/xmax) *x);&lt;br&gt;
&lt;br&gt;
yes, it looks the same on the surface... but it REALLY &lt;br&gt;
isn't.&lt;br&gt;
</description>
    </item>
    <item>
      <pubDate>Sun, 04 May 2008 13:09:03 -0400</pubDate>
      <title>Re: fft sign?</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/168462#430158</link>
      <author>h xu</author>
      <description>"David " &amp;lt;dave@bigcompany.com&amp;gt; wrote in message&lt;br&gt;
&amp;lt;fvadt7$e6u$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; "h xu" &amp;lt;quabla123@gmx.de&amp;gt; wrote in message &amp;lt;fv9nd5&lt;br&gt;
&amp;gt; $9oe$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; &amp;gt; "h xu" &amp;lt;quabla123@gmx.de&amp;gt; wrote in message&lt;br&gt;
&amp;gt; &amp;gt; &amp;lt;fv7gge$a1d$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; i've written a small and simple script to test the&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; fft-function of matlab that transformates exp&lt;br&gt;
&amp;gt; (i*n*pi/xmax *&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; x) from xmin=-xmax to xmax. that should result in a&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; kronecker delta with positive amplitude with value &lt;br&gt;
&amp;gt; 1... but&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; for some reason the amplitude is negative for odd &lt;br&gt;
&amp;gt; n,... why&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; is that?&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; xmin=-5;&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; xmax = 5;&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; N= 2^8;&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; dx = (xmax-xmin)/N;&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; x = linspace(xmin,xmax,N);&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; y= exp(3* i*pi/xmax *x);&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; NFFT = 2^nextpow2(N);&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; Y_ = fft(y,NFFT)*dx;&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; q = [0:NFFT-1]/NFFT/dx*xmax*2;&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; Y = Y_(1:NFFT)/dx/NFFT;&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; plot(q,real(Y),'.b') &lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; hm but i want to transformate functions, that &lt;br&gt;
&amp;gt; transformated&lt;br&gt;
&amp;gt; &amp;gt; also have a imaginary part, so what do i need to do, to &lt;br&gt;
&amp;gt; have&lt;br&gt;
&amp;gt; &amp;gt; the sign right for every value?&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; try:&lt;br&gt;
&amp;gt; y= -1*exp(3* i*(pi/xmax) *x);&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; yes, it looks the same on the surface... but it REALLY &lt;br&gt;
&amp;gt; isn't.&lt;br&gt;
&lt;br&gt;
mhm, sure for y=exp(n* i*(pi/xmax) *x) with n=3 or any other&lt;br&gt;
odd number, the fft of y'=-y would change the amplitude from&lt;br&gt;
negative to positive, but then the sign would be wrong if I&lt;br&gt;
had even n. &lt;br&gt;
&lt;br&gt;
well the exp() thing was just to make my problem with wrong&lt;br&gt;
amplitude-sign clear.&lt;br&gt;
&lt;br&gt;
my question is what i need to do to get the sign of the&lt;br&gt;
ft-amplitude right for a abritary (also complex) function.&lt;br&gt;
&lt;br&gt;
and also why sometimes the sign is false.&lt;br&gt;
</description>
    </item>
    <item>
      <pubDate>Sun, 04 May 2008 13:18:41 -0400</pubDate>
      <title>Re: fft sign?</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/168462#430161</link>
      <author>Greg Heath</author>
      <description>On Apr 29, 11:57=A0am, "h xu" &amp;lt;quabla...@gmx.de&amp;gt; wrote:&lt;br&gt;
&amp;gt; i've written a small and simple script to test the&lt;br&gt;
&amp;gt; fft-function of matlab that transformates exp(i*n*pi/xmax *&lt;br&gt;
&amp;gt; x) from xmin=3D-xmax to xmax. that should result in a&lt;br&gt;
&amp;gt; kronecker delta with positive amplitude with value 1... but&lt;br&gt;
&amp;gt; for some reason the amplitude is negative for odd n,... why&lt;br&gt;
&amp;gt; is that?&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; xmin=3D-5;&lt;br&gt;
&amp;gt; xmax =3D 5;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; N=3D 2^8;&lt;br&gt;
&amp;gt; dx =3D (xmax-xmin)/N;&lt;br&gt;
&lt;br&gt;
dx =3D (xmax-xmin)/(N-1)&lt;br&gt;
x   =3D xmin + dx*(0:N-1);&lt;br&gt;
&lt;br&gt;
Hope this helps.&lt;br&gt;
&lt;br&gt;
Greg&lt;br&gt;
</description>
    </item>
    <item>
      <pubDate>Mon, 05 May 2008 13:32:22 -0400</pubDate>
      <title>Re: fft sign?</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/168462#430336</link>
      <author>Greg Heath</author>
      <description>On Apr 29, 11:57 am, "h xu" &amp;lt;quabla...@gmx.de&amp;gt; wrote:&lt;br&gt;
&amp;gt; i've written a small and simple script to test the&lt;br&gt;
&amp;gt; fft-function of matlab that transformates exp(i*n*pi/xmax *&lt;br&gt;
&amp;gt; x) from xmin=-xmax to xmax. that should result in a&lt;br&gt;
&amp;gt; kronecker delta with positive amplitude with value 1... but&lt;br&gt;
&amp;gt; for some reason the amplitude is negative for odd n,... why&lt;br&gt;
&amp;gt; is that?&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; xmin=-5;&lt;br&gt;
&lt;br&gt;
xmin~=0 makes phase interpretation difficult&lt;br&gt;
&lt;br&gt;
&amp;gt; xmax = 5;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; N= 2^8;&lt;br&gt;
&lt;br&gt;
Too high; Try the 10 separate trials N = 3:12&lt;br&gt;
&lt;br&gt;
&amp;gt; dx = (xmax-xmin)/N;&lt;br&gt;
&lt;br&gt;
Incorrect. See below&lt;br&gt;
&lt;br&gt;
&amp;gt; x = linspace(xmin,xmax,N);&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; y= exp(3* i*pi/xmax *x);&lt;br&gt;
&lt;br&gt;
Weird function. Try an FFT basis function. See below&lt;br&gt;
&lt;br&gt;
-----SNIP&lt;br&gt;
&lt;br&gt;
close all, clear, clc, j=0&lt;br&gt;
&lt;br&gt;
N = 8            % Instructive to look at ALL of N=3:12&lt;br&gt;
xmin = -5&lt;br&gt;
xmax =  5&lt;br&gt;
dx = (xmax-xmin)/(N-1)&lt;br&gt;
X  = N*dx                   % FFT imposed period = 10+dx&lt;br&gt;
&lt;br&gt;
x = linspace(xmin,xmax,N)'; % OK (just changed to column)&lt;br&gt;
x = xmin + dx*(0:N-1)'         % Alternate form&lt;br&gt;
&lt;br&gt;
df = 1/X                    % frequency spacing&lt;br&gt;
f = df*(0:N-1)';&lt;br&gt;
&lt;br&gt;
% The FFT basis functions are exp(2*pi*i*f(n)*x)&lt;br&gt;
&lt;br&gt;
f0 = (N/4)*df            % Half of the Nyquist frequency&lt;br&gt;
&lt;br&gt;
y = exp(2*pi*i*f0*x);&lt;br&gt;
&lt;br&gt;
z = zeros(size(x));&lt;br&gt;
j=j+1,figure(j)&lt;br&gt;
&lt;br&gt;
subplot(2,2,1), hold on&lt;br&gt;
plot(x,z,'k')&lt;br&gt;
plot(x,real(y))&lt;br&gt;
subplot(2,2,2), hold on&lt;br&gt;
plot(x,z,'k')&lt;br&gt;
plot(x,imag(y))&lt;br&gt;
subplot(2,2,3), hold on&lt;br&gt;
plot(x,abs(y))&lt;br&gt;
axis([xmin xmax 0 2])&lt;br&gt;
subplot(2,2,4), hold on&lt;br&gt;
plot(x,z,'k')&lt;br&gt;
plot(x,angle(y))&lt;br&gt;
&lt;br&gt;
Y  = dx*fft(y);&lt;br&gt;
y0 = df*Y;               % Rescaling to the size of y&lt;br&gt;
&lt;br&gt;
j=j+1,figure(j)&lt;br&gt;
subplot(2,2,1), hold on&lt;br&gt;
plot(f,z,'k')&lt;br&gt;
plot(f,real(y0))&lt;br&gt;
subplot(2,2,2), hold on&lt;br&gt;
plot(f,z,'k')&lt;br&gt;
plot(f,imag(y0))&lt;br&gt;
subplot(2,2,3), hold on&lt;br&gt;
plot(f,abs(y0))&lt;br&gt;
% axis([0 max(f) 0 1.1*max(abs(Y))])&lt;br&gt;
% axis([0 max(f) 0 1.1*max(abs(Y))])&lt;br&gt;
subplot(2,2,4), hold on&lt;br&gt;
plot(f,z,'k')&lt;br&gt;
plot(f,angle(y0))&lt;br&gt;
&lt;br&gt;
Hope this helps.&lt;br&gt;
&lt;br&gt;
Greg&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
</description>
    </item>
  </channel>
</rss>
