X-Git-Url: https://scm.cri.ensmp.fr/git/Faustine.git/blobdiff_plain/c7f552fd8888da2f0d8cfb228fe0f28d3df3a12c..b4b6f2ea75b9f0f3ca918f5b84016610bf7a4d4f:/dsp_files/fft.dsp diff --git a/dsp_files/fft.dsp b/dsp_files/fft.dsp deleted file mode 100644 index bbe62ad..0000000 --- a/dsp_files/fft.dsp +++ /dev/null @@ -1,18 +0,0 @@ -import ( "mrfaustlib/fft.lib" ) ; -import ( "mrfaustlib/complex.lib" ) ; - - - -//fft_test(n,m) = _ : overlap(n,m) <: picks(n) : real2complex(n) : fft(n) : stops(n/2), pcplx_moduls(n/2) : modules_vector(n/2); -//fft_test(n,m) = _ : overlap(n,m) : fft(n) : stops(n/2), pcplx_moduls(n/2) : nconcat(n/2); -fft_test(n,m) = vectorize(n) : fft(n) : pcplx_moduls(n) : nconcat(n); - -process = +, _ : + : fft_test(128,128); -//process = fft_test(128,128); -//process = (0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7) <: shuffle(8); - - - - - -