Yes, this is a homework.
I've been told to perform Fourier transform on the following sequence of values:
a=[0 2 -1 3]
I think I'm supposed to use Discrete Fourier Transform and individually perform transform on each of the values. I've got this formula:
$$ F(u) = \sum\limits_{x=0}^{M-1} f(x) e^{-j2{\pi}ux/M}, u = 0,1,..,M-1 $$ $$ f(x) = \frac 1 M\sum\limits_{u=0}^{M-1} F(u) e^{j2{\pi}ux/M}, x = 0,1,..,M-1 $$
Okay, so what are all these variables? I guess that M would be 4 in my case? But what are j and u?
How am I supposed to use these formulas, as both formulas include the other, thus creating an infinite loop?
$$ F(1) = \sum\limits_{x=0}^{M-1} f(x) e^{-j2{\pi}x/4} $$ Which is: $$ f(0)e^{0} + f(1)e^{-j1/2{\pi}} + f(2)e^{-j{\pi}} + f(3)e^{-j3/2{\pi}} $$ Which is: $$ 2e^{-j1/2{\pi}} -e^{-j{\pi}} + 3e^{-j3/2{\pi}} $$ Which is... what?
– Habba Apr 17 '12 at 20:47