FFTs

Posted by Admin On Thursday, August 23, 2012 0 comments


fft fonksiyonu DFT hesabı için bir fast fourier transform(FFT) algoritması kullanır.
Bazı terimler ve hesapları:
y                               sampled data
n=length(y)                number of samples
Fs                             Samples/unit time
dt=1/Fs                    Time increment
t=(0:n-1)/Fs              Time range
Y=fft(y)                    Discrete Fourier Transform(DFT)
abs(Y)                      Amplitude of the DFT
conj(Y).*Y/n            Power of the DFT
Fs/n                          Frequency Increment
f=(0:n-1)*(Fs/n)        Frequency range
Fs/2                          Nyquist frequency

0 comments:

Post a Comment