We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Hi,
I hope this is the right place to ask about DSP/FFT.
I'm digging deeper into CMSIS-DSP and managed to get the FFT frequency bin example to work on a Cortex-M3. I have a few questions about CMSIS in general, as well as FFT and the bin example in special:
Regards,
Ralf
Hello,
1. You can backwards calculate it. Index 213 corresponds to 10kHz. 10000/213 = fs/1024 (1024 is the fft size). fs (sample rate) looks like it was probably 48kHz even. So once you graph the input data,
You can give it appropriate X axis information (1/fs per sample).
4. It's been a while since I've done any DSP, but I believe it's just fs/1024. No 2 involved. Introduction - FFT Size that link was the best I could find on short notice.
Hello Daniel,
thank you for helping out, it's really helpful.