[sage-support] Re: loading code from urls

2007-02-09 Thread Timothy Clemans
When will this feature be released? On 1/27/07, William Stein <[EMAIL PROTECTED]> wrote: > > On Sat, 27 Jan 2007 21:02:14 -0800, Timothy Clemans <[EMAIL PROTECTED]> wrote: > > > > > Could a system be added for loading code from a url > > Yes. > > > and uploading > > worksheets from urls? > > Yes.

[sage-support] Re: background processes in SAGE

2007-02-09 Thread Timothy Clemans
This is about background processes in SAGE. On 2/9/07, Iftikhar Burhanuddin <[EMAIL PROTECTED]> wrote: > > On Fri, 9 Feb 2007, Timothy Clemans wrote: > > For me it is kind of annoying to have to run different servers in > > multiple terminals. Many UNIX shells support running a process in the > >

[sage-support] Re: background processes in SAGE

2007-02-09 Thread Iftikhar Burhanuddin
On Fri, 9 Feb 2007, Timothy Clemans wrote: > For me it is kind of annoying to have to run different servers in > multiple terminals. Many UNIX shells support running a process in the > background. > > $ command & > $ % > > Would something like this be a practical to implement in SAGE? To run long

[sage-support] Re: sage-2.1 execute problem on x86_64-Linux

2007-02-09 Thread William Stein
On Fri, 09 Feb 2007 13:04:11 -0700, Kate Minola <[EMAIL PROTECTED]> wrote: > > On my x86_64-Linux machine, I am able to build sage-2.1. > However when I do ./sage, I get > > [stuff deleted] > 34 > ---> 35 import matrix_modn_dense > 36 import matrix_modn_sparse > 37 > > : /home/kate/sa

[sage-support] sage-2.1 execute problem on x86_64-Linux

2007-02-09 Thread Kate Minola
On my x86_64-Linux machine, I am able to build sage-2.1. However when I do ./sage, I get [stuff deleted] 34 ---> 35 import matrix_modn_dense 36 import matrix_modn_sparse 37 : /home/kate/sage/sage-2.1-x86_64-Linux/loca l/lib/python2.5/site-packages/sage/matrix/matrix_modn_dense.so: un

[sage-support] background processes in SAGE

2007-02-09 Thread Timothy Clemans
For me it is kind of annoying to have to run different servers in multiple terminals. Many UNIX shells support running a process in the background. $ command & $ % Would something like this be a practical to implement in SAGE? --~--~-~--~~~---~--~~ To post to thi

[sage-support] Re: sage: integral closure of ideal

2007-02-09 Thread William Stein
On Fri, 09 Feb 2007 11:04:16 -0700, Milena Hering wrote: > Hi William, > > Is it possible to compute the integral closure of an ideal in sage? It's not nicely integrated into SAGE yet, but the capability is there via Singular, which is included in SAGE. For example: sage: singular.load('reesc

[sage-support] Re: Search and info include non-SAGE functions

2007-02-09 Thread Alec Mihailovs
- Original Message - From: "didier deshommes" <[EMAIL PROTECTED]> > It's a function of associated with an object, so you have to have your > obejct first. For example, if you want to find the cubic root root of > 512, you do something like this: > {{{ > sage: e=512 > sage: e.nth_root(3)

[sage-support] Re: notebook: sidebar hidden by default

2007-02-09 Thread Timothy Clemans
Nice job on the public notebook. On 2/9/07, Timothy Clemans <[EMAIL PROTECTED]> wrote: > The notebook now hides the nav sidebar by default. It would be nice to > have the directory show up on the main page if there are multiple > worksheets. > --~--~-~--~~~---~--~

[sage-support] Re: fortran error on fedora

2007-02-09 Thread William Stein
On Fri, 09 Feb 2007 06:21:37 -0700, carlM <[EMAIL PROTECTED]> wrote: > Latest update fails to build on fedora6, fortran compiler internal > error. tail of make output: I've released sage-2.1.0.1, which doesn't include quaddouble anymore. That should solve this problem for you. NOTE: "> ddmod.f:0

[sage-support] Re: nth root

2007-02-09 Thread Alec Mihailovs
- Original Message - From: "Dirk Laurie" <[EMAIL PROTECTED]> > > David Joyner skryf: >> >> Timothy Clemans wrote: >> > Does SAGE support finding the nth root of something? > > The cube root of 27 is 3, 8 is 2, 64 is 4 >> > >> >> One way is >> ZZ(gap.eval("RootInt( 64, 3 )")) >> > O

[sage-support] Re: Search and info include non-SAGE functions

2007-02-09 Thread didier deshommes
On 2/9/07, Timothy Clemans <[EMAIL PROTECTED]> wrote: > > I had a question about nth roots. I did not know about nth_root. I > tried searching for root, nth, and n using tab but did not find > nth_root. Also nth_root? gives me nothing. It is kind of confusing for > me. It's a function of associat

[sage-support] Search and info include non-SAGE functions

2007-02-09 Thread Timothy Clemans
I had a question about nth roots. I did not know about nth_root. I tried searching for root, nth, and n using tab but did not find nth_root. Also nth_root? gives me nothing. It is kind of confusing for me. --~--~-~--~~~---~--~~ To post to this group, send email to

[sage-support] Re: fortran error on fedora

2007-02-09 Thread William Stein
Several people are having trouble building quaddouble, so I'm going to release a sage-2.1.1 that has it removed (it'll be optional). It's really not crucially important to include it in SAGE. -- William On Fri, 09 Feb 2007 06:21:37 -0700, carlM <[EMAIL PROTECTED]> wrote: > > Latest update fa

[sage-support] notebook: sidebar hidden by default

2007-02-09 Thread Timothy Clemans
The notebook now hides the nav sidebar by default. It would be nice to have the directory show up on the main page if there are multiple worksheets. --~--~-~--~~~---~--~~ To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this gr

[sage-support] fortran error on fedora

2007-02-09 Thread carlM
Latest update fails to build on fedora6, fortran compiler internal error. tail of make output: Making install in fortran make[2]: Entering directory `/mnt/extra/hcmeyer/sage/sage-1.5/spkg/ build/quaddouble-2.2/src/fortran' f95 -O2 -ffree-form -c -o ddmod.o ddmod.f ddmod.f:0: internal compiler e

[sage-support] Re: nth root

2007-02-09 Thread Dirk Laurie
David Joyner skryf: > > Timothy Clemans wrote: > > Does SAGE support finding the nth root of something? > The cube root of 27 is 3, 8 is 2, 64 is 4 > > > > One way is > ZZ(gap.eval("RootInt( 64, 3 )")) > Or: (x^n-a).roots()[0][0] Dirk --~--~-~--~~~---~--~

[sage-support] Re: nth root

2007-02-09 Thread David Joyner
Timothy Clemans wrote: > Does SAGE support finding the nth root of something? > The cube root of 27 is 3, 8 is 2, 64 is 4 > One way is ZZ(gap.eval("RootInt( 64, 3 )")) > > > > --~--~-~--~~~---~--~~ To post to this group, send email to sage-support@googleg