[Matplotlib-users] Default Reply-to-sender

2007-03-23 Thread Bill Baxter
Did you guys make a conscious decision to have the matplotlib list send replies only to the sender of the message rather than the list? This seems to be the default at SourceForge, so it's conceivable you just haven't bothered to change it. I've been on at least 10 different mailing lists in the

[Matplotlib-users] Fwd: interactive plots again

2007-03-23 Thread Bill Baxter
gah! bitten by reply to sender once again. --bb -- Forwarded message -- From: Bill Baxter <[EMAIL PROTECTED]> Date: Mar 24, 2007 12:09 PM Subject: Re: [Matplotlib-users] interactive plots again To: Robert Cimrman <[EMAIL PROTECTED]> Are you sure that's threadsafe? With most windo

Re: [Matplotlib-users] passing mouse clicks back to a polling application

2007-03-23 Thread Angus McMorland
On 24/03/07, belinda thom <[EMAIL PROTECTED]> wrote: > Hi, > > I'm trying to write a very simple GUI using matplotlib and have > gotten stuck. Hopefully someone out there has done something similar > and can point me on my way. > > First, I should mention that the examples provided with matplotlib

[Matplotlib-users] passing mouse clicks back to a polling application

2007-03-23 Thread belinda thom
Hi, I'm trying to write a very simple GUI using matplotlib and have gotten stuck. Hopefully someone out there has done something similar and can point me on my way. First, I should mention that the examples provided with matplotlib weren't immediately helpful to me, because when I try to ru

Re: [Matplotlib-users] reversing an axis

2007-03-23 Thread belinda thom
Eric, This is great; much thanks! --b On Mar 23, 2007, at 3:16 PM, Eric Firing wrote: > belinda thom wrote: >> Hi, >> I'm wondering if there's an easy way to reverse an axis in a plot. > > Using methods: > > bottom, top = ax.get_ylim() > ax.set_ylim(top, bottom) > > Or using pylab functions: >

Re: [Matplotlib-users] reversing an axis

2007-03-23 Thread Eric Firing
belinda thom wrote: > Hi, > > I'm wondering if there's an easy way to reverse an axis in a plot. Using methods: bottom, top = ax.get_ylim() ax.set_ylim(top, bottom) Or using pylab functions: bottom, top = ylim() ylim(top, bottom) Eric > > For instance, suppose I wanted to create a plot that

[Matplotlib-users] reversing an axis

2007-03-23 Thread belinda thom
Hi, I'm wondering if there's an easy way to reverse an axis in a plot. For instance, suppose I wanted to create a plot that had its "origin" in the upper left hand corner, so that x would range from, say 0 to 1 moving right, and y would range from, say 0 to 1, moving down. Thanks! --b ---

Re: [Matplotlib-users] imshow, matshow coordinate system

2007-03-23 Thread Eric Firing
Richard, I have made the requested change to imshow, so it is consistent with the new matshow, and I think it makes much more sense this way--but note that it depends on your rc value for image.origin. So, whenever you get mpl from svn, or the next release (whenever that occurs--not very soon,