Re: [Matplotlib-users] (no subject)

2010-12-05 Thread Benjamin Root
On Sun, Dec 5, 2010 at 5:29 AM, prem kiran wrote: > THANK YOU > thank you for the response .I have problem using sympy > libraray in python.I am unable to use plot module .I am unable to import it > .what i require is given a function ,i should be able to plot it with all > the

[Matplotlib-users] Has anyone tried using matplotlib+dialogs on wx 2.9.1.1, Cocoa?

2010-12-05 Thread Daniel Hyams
Hi all, ran into an issue using matplotib on OSX, Cocoa toolkit, that I haven't run into anywhere else. Basically, if a dialog is started from an event generated from the canvas, the application freezes. I went through the code in backend_wx.py, but didn't see anything there that could cause the p

[Matplotlib-users] what is line._invalid in matplotlib 1.0?

2010-12-05 Thread C M
Hello. I upgraded from about mpl 0.98.5 to 1.0, and this code, which worked in 0.98.5: if line._invalid: line.recache() now gives this error: AttributeError: 'Line2D' object has no attribute '_invalid' What is now (1.0) the right way to test whether a Line2D object is invalid? T

Re: [Matplotlib-users] what is line._invalid in matplotlib 1.0?

2010-12-05 Thread Jae-Joon Lee
Here is a modified version of the code. Note that since it uses non-public APIs, it may stop to work again in the future. According to your original post, you seem to want to pick up points only. I guess the better way is to have a separate artists. One for points and the other for line segments.

Re: [Matplotlib-users] what is line._invalid in matplotlib 1.0?

2010-12-05 Thread C M
On Sun, Dec 5, 2010 at 9:33 PM, Jae-Joon Lee wrote: > Here is a modified version of the code. Note that since it uses > non-public APIs, it may stop to work again in the future. According to > your original post, you seem to want to pick up points only. I guess > the better way is to have a separ