Hello Belinda,
I just stumbled over the same problem. The following will give what you (we)
want:
[x.num for x in matplotlib._pylab_helpers.Gcf.get_all_fig_managers()]
Bye,
Martin
-
Take Surveys. Earn Cash. Influence the F
Hello everyone,
I was playing around with this /examples/widgets/sliders.py and thought about
how to use it in my case. I'd like to controll a parameter which - if
changed - starts a calculation which last about some seconds. So
dragging=False would be exactly what I'm looking for! But on the
I think the easiest way would be using a dictionary:
d = {221:221, 222:223, 223:222, 224:224}
for i in arange(4):
subplot(d[i+221])
plot(arange(10))
text(0.5,0.5,'i=%d'%i)
Bye,
Martin
-
Take Surveys. Earn Cash.
Hello everyone,
below is a little code - what it actually does is quite self-explanatory.
(When clicking with left - draw a red circle. When the right button is pressed
switch to a different mode. Now green squares are drawn and so on.)
My question now is: Is there a way to avoid using global va
Thank you Angus,
this was exactly what I was looking for!
Martin
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business to
Hello everyone,
although I thought this topic had been discussed earlier I wasn't able to find
it in the archives. So please forgive me if I'm repeating something. Here the
question I'm not able to answer on my own:
Is there a possibility to disconnect an event when someone wants to use the
zo