Jump to content

Fast Fourier Transform: Difference between revisions

From Hydrogenaudio Knowledgebase
HotshotGG (talk | contribs)
mNo edit summary
Speckmade (talk | contribs)
(No difference)

Revision as of 17:25, 13 June 2007


Fast Fourier Transform is an efficient algorithm for calculating the discrete fourier transform (DFT). It reduces the execution time by hundreds in some cases. Whereas DFT takes an order of O(n2) computations, FFT takes an order of O(nlogn), and is definitely the preferred algorithm to used in all applications in terms of computational complexity. The FFT in most implementations consistent of samples that are exactly a power of 2, this is commonly known as a FFT Radix 2 algorithm where n=64,128,256,512,1024,2048 etc.