How the heck are you supposed to use FFT?

  • Thread starter Thread starter Focus
  • Start date Start date
  • Tags Tags
    Fft
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
5 replies · 2K views
Focus
Messages
285
Reaction score
3
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
 
Physics news on Phys.org


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.
 


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.
 


Sorry maybe I was not so clear on this. I have a function
[tex]\psi(\lambda)=\int_{-\infty}^{\infty}e^{i \lambda t}f(t) dt[/tex]

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

Thanks
 


So you know [tex]\psi(\lambda)[/tex] and want to find [tex]f(\alpha)[/tex], which is given by the continuous inverse FT or IFT
[tex]f(\alpha)=\int_{-\infty}^{\infty}e^{-i \lambda \alpha}\psi(\lambda) d\lambda[/tex]

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 [tex]t > t_c[/tex] where [tex]t_c[/tex] 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 [tex]5\sigma[/tex]. So you sample psi uniformly over the interval
[tex]|\lambda| \leq 5\sigma[/tex], at a rate [tex]\Delta\lambda[/tex] that satisfies the sampling theorem

[tex]\Delta\lambda \geq \frac{2}{t_c}[/tex].

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 [tex]\alpha[/tex].

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.