[sage-devel] Re: Bug(?)/Feature request: list_plot doesn't plot numpy arrays

2008-11-19 Thread mabshoff
This needs to be a ticket, but the patch as is has some issue with the way numpy is imported. Cheers, Michael --~--~-~--~~~---~--~~ To post to this group, send email to sage-devel@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For

[sage-devel] Re: Bug(?)/Feature request: list_plot doesn't plot numpy arrays

2008-09-29 Thread mabshoff
On Sep 28, 12:28 pm, Tobias Eberle <[EMAIL PROTECTED]> wrote: > Hi, Hi Tobias, > list_plot doesn't plot numpy arrays: > > sage: from numpy import * > sage: a = [[x, x**2] for x in arange(-5,5,0.1)] > sage: list_plot(a) > > works fine, but > > sage: a = array([[x, x**2] for x in arange(-5,5,0.1