Plotting question

Hi guys,

I have a question. I have made a python script with some c++ modules.
Everything is working fine, so I’m pretty happy so far. Occasionally
something happens within a .cc file, it doesn’t really matter what
happens.
Whenever this happens I want to make a plot of the event and if it
happens
again I want the plot to be refreshed so that we can keep track of the
event
changing over time. Hope you guys understand what I’m talking about ^^.

So now my question. Is there any way to do this? Should I dive into the
.cc
code and do some sort of plot, not using python? Any other ideas are
very
welcome.

Thanks,
tvb


View this message in context:
http://www.nabble.com/Plotting-question-tf4073945.html#a11578282
Sent from the GnuRadio mailing list archive at Nabble.com.

A quick and dirty fix is to dump the data to a file, then plot the data
offline with python.

I find it convenient to sink the data to a vector_sink and then use
matplotlib to plot the signal.

2007/7/14, Justin S. [email protected]:

again I want the plot to be refreshed so that we can keep track of the event


Discuss-gnuradio mailing list
[email protected]
Discuss-gnuradio Info Page


Trond D.

If you are set on producing a real-time plot from within the c-code, you
can
use opencv. I have tried plplot as well, however I was not successful
in
updating the plot in real-time.

Trond D. wrote:

So now my question. Is there any way to do this? Should I dive into the


Discuss-gnuradio mailing list
[email protected]
Discuss-gnuradio Info Page


View this message in context:
http://www.nabble.com/Plotting-question-tf4073945.html#a11711048
Sent from the GnuRadio mailing list archive at Nabble.com.