[Tutor] fyi - re: fft
Jeff Peery
jeffpeery at yahoo.com
Thu Aug 4 22:48:31 CEST 2005
hello, thought I'd post my progress with fiddling with the FFT.
import FFT
I've been using fft by taking the real part with: myFFT = abs(FFT.fft())
the returned values are the fourier coefficients starting with a0
the old thing is that the output is symmetrical about N/2 where n>N/2 is the negative frequencies. also all outputs are multiplied by N, so to get anything meaningful (at least in my case) you must divide the output by N. so to get a0 you want myFFT[0]/float(N).
I compared several inputs with the output and I also used the output to calculate the fourier series and it all looks like it should.
thanks for those that had input.
Jeff
thats all I got.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mail.python.org/pipermail/tutor/attachments/20050804/a7e95cda/attachment.htm
More information about the Tutor
mailing list