##// END OF EJS Templates
test_fft directory added to the repository
test_fft directory added to the repository

File last commit:

r3:42c6ea189885 default
r4:a2755b43b4c9 default
Show More
main.py
11 lines | 300 B | text/x-python | PythonLexer
from fft_8_decimation_in_frequency import FFT8DecimationInFrequency
N = 8
scale = 0
fft8DecimationInFrequency = FFT8DecimationInFrequency(N, scale)
x = range(8)
fft_val = fft8DecimationInFrequency.fft(x)
dft_val = fft8DecimationInFrequency.dft(x)
print x
print "fft ", fft_val
print "dft ", dft_val