Re: [Matplotlib-users] matplotlib and py2exe

2007-04-01 Thread Werner F. Bruhin
Hi Archana, Sometimes py2exe can't figure out what needs to be included. In these cases one creates entries in the packages section to force the inclusion of one or multiple packages. Archana Ganesan wrote: Hi all, ... options = {py2exe: {compressed: 1, optimize: 2,

Re: [Matplotlib-users] creating live plot (update while data is arriving)

2007-04-01 Thread Antonino Ingargiola
Sorry for the late answer... On 3/29/07, Ken McIvor [EMAIL PROTECTED] wrote: On Mar 28, 2007, at 6:03 PM, Antonino Ingargiola wrote: On 3/28/07, Ken McIvor [EMAIL PROTECTED] wrote: You should probably do the acquisition asynchronously by running it in a separate thread. snip That's

Re: [Matplotlib-users] creating live plot (update while data is arriving)

2007-04-01 Thread Antonino Ingargiola
On 4/1/07, Antonino Ingargiola [EMAIL PROTECTED] wrote: On 3/29/07, Ken McIvor [EMAIL PROTECTED] wrote: [cut] The last think I'm not yet able to do is to update the colorbar to autoscale with the new incoming data. The the script that follows tries to update the colorbar too but it does

Re: [Matplotlib-users] Getting data from a figure

2007-04-01 Thread Antonino Ingargiola
On 3/30/07, Richard Brown [EMAIL PROTECTED] wrote: On 30/03/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Not sure what region[:] is supposed to achieve. You are creating a copy with the same name, so you are over-riding the original variable. That doesn't seem to be the case - it

Re: [Matplotlib-users] matplotlib and py2exe

2007-04-01 Thread Archana Ganesan
Hi, I tried following the instructions at the py2exe site and I have also uncommeneted and made it include the matplotlib.numerix package. Still it doesnt seem to work. Is there any other way of compiling it into an executable? Thanks, Archana. On 4/1/07, Werner F. Bruhin [EMAIL PROTECTED]

Re: [Matplotlib-users] creating live plot (update while data is arriving)

2007-04-01 Thread Eric Firing
Antonino Ingargiola wrote: On 4/1/07, Antonino Ingargiola [EMAIL PROTECTED] wrote: On 3/29/07, Ken McIvor [EMAIL PROTECTED] wrote: [cut] The last think I'm not yet able to do is to update the colorbar to autoscale with the new incoming data. The the script that follows tries to update the

Re: [Matplotlib-users] Removing the black border around a plot?

2007-04-01 Thread Chelonian
Peter L. Buschman wrote: Okay, removing the frame turns out to work like this. ax=gca() setp(ax, frame_on=False) I'm new to matplotlib, and I can't even get this to work (let alone the other fix of changing the colors). Could you elaborate about how to implement this?