Hi,
in Matlab, it is possible to set the figure window title by using:
figure('Name','Simulation Plot Window')
You can even disable the numbering (i.e. the "Figure 1:" tag in the title)
by using:
figure('Name','Simulation Plot Window','NumberTitle','off')
Is there some way of doing a similar
> I guess there is no reason you can't do it with pylab after all, see
> animation_blit_qt4, for example. I think you would be better off using a
gui
> timer/event handler like in the blit example.
>
> Darren
Darren, thanks a lot for your help!
I tried the animation_blit_tk example but it did not
t" be trigged every few seconds, and that event would be
responsible for checking if there is new data, reading the file, and
updating the plot if necessary.
Is there some way to accomplish something like this?
Thanks,
Angel
-- Forwarded message ------
From: Angel Ezquerra Mor
> I would suggest not using the pylab interface. Try building off of one of
the
> embedding_in examples in
> http://matplotlib.sourceforge.net/matplotlib_examples_0.90.0.zip.
Thank you for the answer, Darren. However, could you explain a bit more in
detail why is not a good idea to use the pylab i
Hi,
I want to make a small python script that monitors a text file and plots its
contents. This script is meant to run in Windows. The file that is being
monitored has one floating point number per line and new numbers can be
appended to the end of the file at any moment by some external program.