Forum Discussion
Altera_Forum
Honored Contributor
15 years agoNeed Help with FFT code
Hi, I am trying to implement a FFT code on the altera DE1 board. I have some doubts regarding the procedure. 1.Can i simulate the outputs of the FFT in Quartus 11??If so,Can you provide ...
Altera_Forum
Honored Contributor
15 years agoIn any dsp module testing is same, you get stimulus input then its reference output from a software tool e.g. Matlab then pass same input to your module and check outputs for errors. You need a testbench to read stimulus file and ref file then compare.
For fft use Matlab fft, just one statement: y = fft(x,64); however you need care to get frame boundaries (64 data frame) correct between Matlab and module. You also need match scaling issue and fft centre(dc centred or not)