Plot Spectrum in real time?

匆匆过客 提交于 2019-12-01 13:47:27

input signal is usually in form of cyclic buffer the output buffer can be static one. This applies also for time domain plots. Without actually see your structures is impossible to answer if you had to change them or not Here is how I do this:

  1. make some buffer (array) for FFT

    can be static ... No changes in it will happen. It size has to be at least slowest_timebase/fsampling samples. In case your FFT has complex domain input then double the size. If you want to scroll/zoom/unzoom then enlarge the size accordingly

  2. find the start sample of the actual Oscilloscope view

    via trigger or for starters just last N-samples (but it will flicker because of phase ...) or you preview all samples by N-sample chunks from start to end with the same speed as sampling. Similar like you would send data to sound-card to play sound. You just start after some time so you have enough sampled data already ...

  3. process data

    Copy data from start point to FFT buffer add imaginary part of samples if needed (Im=0.0) and process FFT. Then plot the first half of real output.

    The frequency of i-th sample (out of N) is f=i*samplerate/N [Hz] where i={ 1,...,(N/2)-1} skipping i=0 which represents DC component.

    You can also add logarithmic axises to frequency. In that case do not forget to change the x value in plot too

  4. update start position

    simply add to start position the size of used samples (N) and do not forget that trigger also use this time as start point before finding the real start...

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!