[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

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.

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

2009-08-20 Thread M. Hecht
Hi, ok meanwhile I found out that this is a typical beginners error, sorry. Nevertheless, using ion(), and ioff() together with draw() works fine. What I didn't find out up to now was the funtion ginput(n=1, timeout=30, show_clicks=True) which prevents me from killing the window after

[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')