[sage-support] Re: Document production using Sage?

2009-10-04 Thread Mike Hansen
Hi Paul, On Mon, Oct 5, 2009 at 11:06 AM, Paul wrote: > > I saw a reference in one of the tutorials to producing nicely > formatted documents in sage (graphs, resolved latex symbols, etc), and > for the most part, sage works fine as in for this. The only fault is > that the input boxes remain in

[sage-support] sage notebook server won't start vmware windows version

2009-10-04 Thread Steve
I started the sage virtual machine (4.1.1) using the VMware player (2.5.3) and it seemed to start fine. I can get to the sage login prompt and type "notebook". I see a message to start firefox with a local ip address and that it may take 10 seconds to start the server. After about 10 seconds, howe

[sage-support] Document production using Sage?

2009-10-04 Thread Paul
I saw a reference in one of the tutorials to producing nicely formatted documents in sage (graphs, resolved latex symbols, etc), and for the most part, sage works fine as in for this. The only fault is that the input boxes remain in addition to the output boxes. Is it possible to suppress the inpu

[sage-support] memory leak in plot or mpmath?

2009-10-04 Thread Dan Drake
I'm trying to make a bunch of plots so I can assemble them together into a video. Here's my code: import mpmath erfc = mpmath.erfc def partial(n, x, t): return sum(erfc((2*n+1-x)/(2*sqrt(t))) - erfc((2*n+1+x)/(2*sqrt(t))) for n in range(n+1)) start = 1 step =

[sage-support] Re: Sage fails to compile on CentOS 4.7

2009-10-04 Thread Jeff Post
Each time I upgraded the compiler I did a "make distclean", reran configure and make for sage. Jeff On Sunday 04 October 2009 18:34, William Stein wrote: > On Sun, Oct 4, 2009 at 6:25 PM, Jeff Post wrote: > > On Sunday 04 October 2009 11:21, William Stein wrote: > > > I just installed Centos 5

[sage-support] Re: Sage fails to compile on CentOS 4.7

2009-10-04 Thread William Stein
On Sun, Oct 4, 2009 at 6:25 PM, Jeff Post wrote: > > On Sunday 04 October 2009 11:21, William Stein wrote: > > > > I just installed Centos 5.3 on both 32 and 64-bit machines yesterday > > to do some testing, and Sage builds no problem with the default > > compiler that they include by default, wh

[sage-support] Re: Sage fails to compile on CentOS 4.7

2009-10-04 Thread Jeff Post
On Sunday 04 October 2009 11:21, William Stein wrote: > > I just installed Centos 5.3 on both 32 and 64-bit machines yesterday > to do some testing, and Sage builds no problem with the default > compiler that they include by default, which is gcc-4.1.2. > After four hours the compile finished usi

[sage-support] Re: 4.4.1 quaddouble bug

2009-10-04 Thread William Stein
On Sun, Oct 4, 2009 at 3:46 PM, Don Harter wrote: > > make[4]: Entering directory `/usr/src/sage-4.1.1/spkg/build/ > quaddouble-2.2.p9/src/tests' > make[4]: warning: -jN forced in submake: disabling jobserver mode. > g++ -DHAVE_CONFIG_H   -I.. -I../include -I../include   -fPIC -O3 - > Dx86  -MT q

[sage-support] Re: How cleanly kill Sage notebook on command line?

2009-10-04 Thread Alex Clemesha
On Sun, Oct 4, 2009 at 3:43 PM, Chris Seberino wrote: > > I'm writing an /etc/init.d script to start and stop the Sage notebook. > > I'm not sure how to cleanly shutdown the notebook from the command > line. > > ps -ef shows a lot of sage processes so it isn't obvious which one I > should kill -9

[sage-support] Re: How cleanly kill Sage notebook on command line?

2009-10-04 Thread William Stein
On Sun, Oct 4, 2009 at 3:43 PM, Chris Seberino wrote: > > I'm writing an /etc/init.d script to start and stop the Sage notebook. > > I'm not sure how to cleanly shutdown the notebook from the command > line. > > ps -ef shows a lot of sage processes so it isn't obvious which one I > should kill -9

[sage-support] 4.4.1 quaddouble bug

2009-10-04 Thread Don Harter
make[4]: Entering directory `/usr/src/sage-4.1.1/spkg/build/ quaddouble-2.2.p9/src/tests' make[4]: warning: -jN forced in submake: disabling jobserver mode. g++ -DHAVE_CONFIG_H -I.. -I../include -I../include -fPIC -O3 - Dx86 -MT qd_test.o -MD -MP -MF .deps/qd_test.Tpo -c -o qd_test.o qd_test.

[sage-support] How cleanly kill Sage notebook on command line?

2009-10-04 Thread Chris Seberino
I'm writing an /etc/init.d script to start and stop the Sage notebook. I'm not sure how to cleanly shutdown the notebook from the command line. ps -ef shows a lot of sage processes so it isn't obvious which one I should kill -9. I tried killing some but can't find the right one that shuts down

[sage-support] Re: sage vmware image visible from Internet

2009-10-04 Thread William Stein
On Sun, Oct 4, 2009 at 1:28 PM, kovzol wrote: > > Dear All, > > I am new to sage-support, but I have been using Sage for a while with > good impressions! I have always been using www.sagenb.org, but now I > wanted to try it on a separate machine (Linux, Debian 5.0 Lenny). > > I am afraid that Sag

[sage-support] Re: sage vmware image visible from Internet

2009-10-04 Thread kovzol
Dear All, I am new to sage-support, but I have been using Sage for a while with good impressions! I have always been using www.sagenb.org, but now I wanted to try it on a separate machine (Linux, Debian 5.0 Lenny). I am afraid that Sage currently does not support what I like to do: * My web ser

[sage-support] Re: Sage fails to compile on CentOS 4.7

2009-10-04 Thread William Stein
On Sun, Oct 4, 2009 at 9:41 AM, Jeff Post wrote: > > On Saturday 03 October 2009 17:32, William Stein wrote: >> On Sat, Oct 3, 2009 at 3:51 PM, Jeff Post wrote: >> > Hi all. After about an hour and a half of compiling, the build fails with >> > errors due to segmentation faults in some test prog

[sage-support] Cython and SciPy special functions

2009-10-04 Thread mark mcclure
I'm investigating the complex dynamics of Airy functions with Python and I wonder if I can speed up the process significantly with Cython. I've successfully sped up the code by about 50% but I might expect much greater speed improvement. I'm guessing the problem is that Cython can't deal with Sc

[sage-support] Re: Sage fails to compile on CentOS 4.7

2009-10-04 Thread Jeff Post
On Saturday 03 October 2009 17:32, William Stein wrote: > On Sat, Oct 3, 2009 at 3:51 PM, Jeff Post wrote: > > Hi all. After about an hour and a half of compiling, the build fails with > > errors due to segmentation faults in some test programs. The relevant > > information from the install log i

[sage-support] Introduction to Sage, in Icelandic

2009-10-04 Thread ulfarsson
Hi! I just uploaded a new version of an intro to Sage, in Icelandic, that I made while teaching a course on calculus at Reykjavik University. If anyone wants to check them out they are at http://web.me.com/hemsa/Teaching/SAGE_intro.html Best, Henning Ulfarsson --~--~-~--~~

[sage-support] Re: desolve - my missunderstanding or a bug in Sage?

2009-10-04 Thread Marshall Hampton
For the first time dealing with some of these things the IRC channel sage-devel is very helpful. It would be great if you could do this. I am happy to review it, you can put me as a CC: or reviewer. I think your solution sounds good. -Marshall Hampton On Oct 4, 1:48 am, "ma...@mendelu.cz" wro