PDA

View Full Version : Fft


Focus
Jul16-08, 10:56 AM
Hey,

This may seem very stupid but how the heck are you supposed to use FFT? The FFT transformations take a vector as in input but I want to use it to work out FT of a perticular value. I have the charecteristic function of a distribution and wish to numericaly work out values for the distribution function. Hope this makes sense.

Thanks in advance

marcusl
Jul16-08, 02:08 PM
The FT gives the complex spectrum of the input signal, the FFT gives the discrete complex spectrum of an input sequence or vector. In other words, it decomposes the input into frequency components. I don't follow how you intend to apply this to distributions.

HallsofIvy
Jul17-08, 04:48 AM
The Fourier transform itself is a transform of a function not a number. The FFT (Fast Fourier Transform) thinks of the function as being given by a discrete "vector" of values at different points. I have no idea what you could mean by taking the FFT of a single value.

Focus
Jul17-08, 09:31 AM
Sorry maybe I was not so clear on this. I have a function
\psi(\lambda)=\int_{-\infty}^{\infty}e^{i \lambda t}f(t) dt

I was wondering if you could tell me how I could use the FFT (i.e. what values I should sample) to obtain f(\alpha) for some \alpha I choose?

Thanks

marcusl
Jul17-08, 01:39 PM
EDIT: I couldn't get equations in this post to render properly, please see the next.

marcusl
Jul17-08, 02:05 PM
So you know \psi(\lambda) and want to find f(\alpha), which is given by the continuous inverse FT or IFT
f(\alpha)=\int_{-\infty}^{\infty}e^{-i \lambda \alpha}\psi(\lambda) d\lambda

You want to know how to evaluate this using the FFT, right? This is a classic problem in digital signal processing, and the approach depends on the nature of f and psi.

A) f(t) is "bandlimited", that is, it is zero for t > t_c where t_c is a "cutoff time." (Because you are doing an IFT, the usual conventions of sampling a time function to find frequency are swapped here--you are sampling a spectrum to find a time function). An example is f(t)=gaussian, which is effectively zero after 5 standard deviations in time. This is the cutoff time t_c. Psi is also limited in frequency, after, say 5\sigma. So you sample psi uniformly over the interval
|\lambda| \leq 5\sigma, at a rate \Delta\lambda that satisfies the sampling theorem

\Delta\lambda \geq \frac{2}{t_c}.

Use a number of points N that is a power of 2 if you want to use an FFT, otherwise compute with the DFT, and take the value closest to \alpha.

B) If you are not bandlimited, you will alias and your results will suffer in accuracy. We won't discuss this unless it's necessary.