Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
437 views
in Technique[技术] by (71.8m points)

c++ - Plot Spectrum in real time?

I would like to add and plot the spectrum of signal on Qwt Oscillocope's example. My Idea is to create another seriesData class. SerieData. I wonder if there will not conflict between sample of SeriesData and sample of Signaldata or I just need to modify the signaldata? Any help and Advice would be appreciated. Thanks

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

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 output for example sqrt(Re^2+Im^2).

    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...

for more info and demo see plotting real time Data on (qwt )Oscillocope


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...