[Matplotlib-users] Yet another toolbar replacement for Matplotlib

2011-06-27 Thread Sergii Pylypenko
Hi I've made a lib to replace the default Matplotlib toolbar, it looks like this: http://i256.photobucket.com/albums/hh163/_pelya/mpl-gui.png It replaces the pan/zoom button with wheels and handles, using new subplot2grid API of matplotlib 1.0.1. The reason behind that change is that people I'm

Re: [Matplotlib-users] forcing prompt draw

2011-06-27 Thread Jonathan Slavin
I tried the suggested clean-up but saw no difference in performance. I left out a crucial piece of information, I think, in my earlier message. The delay in drawing occurs when I'm running the code from within ipython, invoked with the -pylab flag. When I run it directly from the command line, I

Re: [Matplotlib-users] ipython intermittently segfaults when figure is closed.

2011-06-27 Thread Kaushik Ghose
I don't know for sure if this is matplotlib's fault. ipython's fault or Mac OS X, but I ever since I upgraded to matplotlib 1.0.1 I have this problem that ipython will exit with segfault after I close a figure. What version of ipython are you using? Hi Eric, Thanks for your response. I'm

Re: [Matplotlib-users] forcing prompt draw

2011-06-27 Thread Eric Firing
On 06/27/2011 03:38 AM, Jonathan Slavin wrote: I tried the suggested clean-up but saw no difference in performance. I left out a crucial piece of information, I think, in my earlier message. The delay in drawing occurs when I'm running the code from within ipython, invoked with the -pylab

[Matplotlib-users] adding a subplot

2011-06-27 Thread Alex Flint
Hi there, I'm wondering whether there is an easy way to append an additional subplot to an existing figure without losing the subplots already drawn. Currently if I do something like subplot(211); plot(...); subplot(212); plot(...); Then I get inconsistent drawing results if I try something