Does the fft automatically use a dft algorithm?
Mostra commenti meno recenti
Hello everybody, Matlab has only the fft command. The fft algorithm is based on a signal of power of 2. If your signal length differs, you can perfomr zero-padding or a cut-off. Well, what is not clear for me: if the signal does not fit the power of 2 condition, does matlab then automatically perform a dft or does it automatically zero-padding/truncating? thanks for your help! Peter
Risposta accettata
Più risposte (1)
David Young
il 7 Nov 2011
0 voti
The DFT isn't an algorithm: it's a mathematical formula that defines the transform. You can find the formula in textbooks and in the documentation for the fft function.
The FFT is an algorithm: it's a set of instructions for carrying out the computations needed to perform the DFT on data. The general modern formulation is not restricted to data lengths that are powers of 2, though it requires less computation if the length has many small factors, and a power of 2 is such a case.
The fft function in MATLAB is an implementation of the FFT; it therefore also implements the DFT. This is true regardless of the length of the data. The function does not do any automatic zero-padding, though you can specify padding to a specific length if you need to try to reduce run-time.
Categorie
Scopri di più su Fourier Analysis and Filtering in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!