Re: [Matplotlib-users] Three-Phase-Diagrams with matplotlib

2009-08-24 Thread M. Hecht
Thank you, this was exacly what I was looking for. No I try to understand this ;-) -- View this message in context: http://www.nabble.com/Three-Phase-Diagrams-with-matplotlib-tp25122001p25123043.html Sent from the matplotlib - users mailing list archive at Nabble.com. --

[Matplotlib-users] Three-Phase-Diagrams with matplotlib

2009-08-24 Thread M. Hecht
Hello, does anyone know whether it is possible to draw three-phase-diagrams with matplotlib? A three-phase-diagram is a triangular diagram applied in chemistry e.g. for slags where one has three main components of a chemical substance at the corners and points or lines within the triangle markin

Re: [Matplotlib-users] plot multiple times in one script fails

2009-08-20 Thread M. Hecht
after every plot, so thank you John Hunter-4. Before it was even not possible to move the focus to another window without crashing the application. Now all behaves as "expected". Thank you again. John Hunter-4 wrote: > > On Tue, Aug 18, 2009 at 3:55 AM, M. Hecht > wrote: >

[Matplotlib-users] plot multiple times in one script fails

2009-08-19 Thread M. Hecht
Hello, I'm totally new to matplotlib, so sorry if the question is stupid. I'm trying this slightly modified example from the examples page from pylab import * A = rand(5,5) figure(1) imshow(A, interpolation='bicubic') show() close(1) A = rand(5,5) figure(2) imshow(A, interpolation='bicubic') s