Re: [Matplotlib-users] colors

2014-06-20 Thread Bruno Pace
anks a lot! On 2014/06/18, 5:23 AM, Bruno Pace wrote: > Ok, so using the norm=SymLogNorm I cannot distinguish the values that > are exactly 0.0 from the really small ones, right? Would it be possible > Correct, the scale is linear for small values. to make use of the set_bad method wi

Re: [Matplotlib-users] colors

2014-06-18 Thread Bruno Pace
Eric Firing : > On 2014/06/17, 8:59 AM, Bruno Pace wrote: > > Hi all, > > > > I'm trying to use imshow to plot some values which fall on the interval > > [0,1]. I need to > > use a logscale to emphasize the scales of the data. The solution I found >

[Matplotlib-users] animation optimization

2014-06-18 Thread Bruno Pace
The solution I found was writing the png files and then animating. It is very time and memory consuming, though, and I have the impression it is not the best solution to tackle this problem. What is the best practice to deal with this problem? Thanks! Bruno P.S.: I'm using Ipython, would

[Matplotlib-users] colors

2014-06-17 Thread Bruno Pace
f tackling this problem?? It's pretty much the same problem described here, but with a logscale... http://stackoverflow.com/questions/7875688/how-can-i-create-a-standard-colorbar-for-a-series-of-plots-in-python Thank y

[Matplotlib-users] dynamic plottinng

2013-09-19 Thread Bruno Pace
Hi all, I am trying to plot the time evolution of a probability distribution, but I don't know how to use it. I have a different histogram for each time step. I tried plt.ion() but I'm not sure how to use it. I'm sure it must be a simple solution, but I haven't really found out how to do it! If I

Re: [Matplotlib-users] Path lacks initial MOVETO

2012-01-23 Thread Bruno Santos
Sorry it took me a while to get back to you. I have finally written some code to replicate the problem. I have attached a file with it. Thank you very much in advance, Bruno Santos 2012/1/19 Tony Yu > > > On Thu, Jan 19, 2012 at 12:07 PM, Bruno Santos wrote: > >> Hello ever

[Matplotlib-users] Path lacks initial MOVETO

2012-01-19 Thread Bruno Santos
ct direction to solve this problem? Thank you very much in advance, Bruno Santos -- Keep Your Developer Skills Current with LearnDevNow! The most comprehensive online learning library for Microsoft developers is just $99.99

[Matplotlib-users] Customize y axe mpl + wxpython

2011-05-13 Thread Gruel Bruno
G1', 'G2', 'G3')) for i in dir(self.axes): print i self.canvas.draw() Thank's Bruno This message has been scanned for viruses and dangerous content by Amavisd-new, and is believed to be clean. -

[Matplotlib-users] Plotting large data sets with Pylab

2011-02-22 Thread Bruno George
x27;) show() * This script will plot consistently on the Mac and crashes every time on the PC. I'm data logging at 100MZ and the card is on the PC desk side machine. My Macbook Air doesn't

Re: [Matplotlib-users] Possible workaround for memory leak using pylab.figure(), pylab.show() ?

2010-02-01 Thread Bruno Santos
Have you tried the pylab.close() this should force the flush of the memory. 2010/2/1 Tanja Gurzhiy > Hi, > > > > I have already submitted this issue as a possible problem to Tracker, > however there is no response till now > http://sourceforge.net/tracker/?func=detail&aid=2940967&group_id=80706&

[Matplotlib-users] Help ploting bars

2009-11-24 Thread Bruno Santos
Hello everyone, I am trying to use matplotlib to plot several bar charts inside a for loop the problem is that I get the first one, but once I close it I cannot plot anymore. I still get the window but no image appear and eventually python crashes. Here is my code: [code] def plot(self):

Re: [Matplotlib-users] question about animation and widgets

2007-08-16 Thread bruno
in fact that may become clearer with my code. There are two classes. One does the animation. The other is supposed to add a button. The infinite loop is at the end Bruno Greg Willden a écrit : Hi Bruno, Which method are you using to do the animation? Timer, Idle Event? If you are using a

Re: [Matplotlib-users] question about animation and widgets

2007-08-16 Thread bruno
would be very thankfull. Already many thanks Bruno Greg Willden a écrit : > Hi Bruno, > > Which method are you using to do the animation? > Timer, Idle Event? > > If you are using a timer then it is pretty straightforward to start > and stop the timer from the handler for

[Matplotlib-users] question about animation and widgets

2007-08-16 Thread bruno
d give the state of this variable a a stop condition to the loop. However this doesn't work. In fact the button doesen't seems to be "listening" during the loop. Any idea of how I should be doing that ? Cordially Bruno ---