[sage-support] Re: OverflowError: math range error in matplotlib

2009-02-20 Thread M. Yurko
I am running Sage 3.2.3 on Ubuntu 8.10 64-bit on an Intel Core 2 Duo. I have tried a few other plots and anything that directly accesses matplotlib fails with the same error. I'm going to try and reinstall since this is a new issue so something may have gotten corrupted. On Feb 20, 9:55 pm, David

[sage-support] Re: OverflowError: math range error in matplotlib

2009-02-20 Thread David Joyner
On Fri, Feb 20, 2009 at 4:53 PM, M. Yurko wrote: > > Sorry, I forgot to post bits24_originial. Its a list of values which > were generated completely separately. It is [9, 155, 276, 391, 507, > 618, 729, 839, 948, 1052, 1161, 1269, 1376, > 1484, 1591, 1699, 1800, 1907, 2014, 2120, 2227, 2327, 243

[sage-support] Re: OverflowError: math range error in matplotlib

2009-02-20 Thread M. Yurko
Sorry, I forgot to post bits24_originial. Its a list of values which were generated completely separately. It is [9, 155, 276, 391, 507, 618, 729, 839, 948, 1052, 1161, 1269, 1376, 1484, 1591, 1699, 1800, 1907, 2014, 2120, 2227, 2327, 2433, 2540, 2646, 2752, 2851, 2957, 3064, 3170, 3276, 3374, 348

[sage-support] Re: OverflowError: math range error in matplotlib

2009-02-20 Thread Jason Grout
David Joyner wrote: > I don't know if this is helpful or not but here is what I get > (ubuntu 8.04, sage-3.3.alpha1): > > > sage: import pylab > sage: pylab.clf() > sage: pylab.figure(1) > > sage: xs = range(1,1,100) > sage: pylab.plot(xs, bits24_original, label="$S_n$") > -

[sage-support] Re: OverflowError: math range error in matplotlib

2009-02-20 Thread mabshoff
On Feb 20, 5:12 am, David Joyner wrote: Hi David, > I don't know if this is helpful or not but here is what I get > (ubuntu 8.04, sage-3.3.alpha1): > > sage: import pylab > sage: pylab.clf() > sage: pylab.figure(1) > > sage: xs = range(1,1,100) > sage: pylab.plot(xs, bits24_original, lab

[sage-support] Re: OverflowError: math range error in matplotlib

2009-02-20 Thread David Joyner
I don't know if this is helpful or not but here is what I get (ubuntu 8.04, sage-3.3.alpha1): sage: import pylab sage: pylab.clf() sage: pylab.figure(1) sage: xs = range(1,1,100) sage: pylab.plot(xs, bits24_original, label="$S_n$") ---

[sage-support] Re: OverflowError: math range error in matplotlib

2009-02-20 Thread M. Yurko
xs was the list of x coordinates which I created with range (1,1,100). On Feb 19, 9:03 pm, William Stein wrote: > On Thu, Feb 19, 2009 at 3:46 PM, M. Yurko wrote: > > > First off, I know that this is specificaly a SAGE issue, but I can't > > find a matplotlib list, so I'm hoping that someon

[sage-support] Re: OverflowError: math range error in matplotlib

2009-02-19 Thread William Stein
On Thu, Feb 19, 2009 at 3:46 PM, M. Yurko wrote: > > First off, I know that this is specificaly a SAGE issue, but I can't > find a matplotlib list, so I'm hoping that someone here can help. I > recieve an error when executing the following code in the notebook: > > #Create the graph > import pyla