[sage-support] Re: Array in Sage

2013-05-19 Thread P Purkayastha
On 05/20/2013 01:52 PM, Santanu Sarkar wrote: Is the any way to write four dimensional array in Sage like C int M[10][10][10][10]? For two dimensional case I use Matrix. How do you intend to use it? You can simply create a nested list. sage: C = 1,2], [3]], [[3], [4]]], [[[1,2],[3]],[[3],

[sage-support] Array in Sage

2013-05-19 Thread Santanu Sarkar
Is the any way to write four dimensional array in Sage like C int M[10][10][10][10]? For two dimensional case I use Matrix. -- You received this message because you are subscribed to the Google Groups "sage-support" group. To unsubscribe from this group and stop receiving emails from it, send a

[sage-support] Re: Get an error message when trying to install sage cell server

2013-05-19 Thread leif
Aaron E-J wrote: I am interested in contributing to the sage cell server and am going through the steps outlined in the readme in the https://github.com/sagemath/sagecell#id1";>github page. When I get to step #5, I get the following error message that is detailed below. FWIW, you already fail

Re: [sage-support] Notebook: How to print long output lines (>72 characters) without breaks?

2013-05-19 Thread Georgios Tzanakis
That was simpler than I thought.. Thanks so much! On Sun, May 19, 2013 at 6:12 PM, Jim Clark wrote: > With the mouse pointer, click to the left of the line that is broken up. > That will toggle the output line to the non-breaking state. > > (I only recently discovered this solution when I was hav

[sage-support] Get an error message when trying to install sage cell server

2013-05-19 Thread Aaron E-J
I am interested in contributing to the sage cell server and am going through the steps outlined in the readme in the https://github.com/sagemath/sagecell#id1";>github page. When I get to step #5, I get the following error message that is detailed below. I am running this on a kubuntu virtual ma

Re: [sage-support] Notebook: How to print long output lines (>72 characters) without breaks?

2013-05-19 Thread Jim Clark
With the mouse pointer, click to the left of the line that is broken up. That will toggle the output line to the non-breaking state. (I only recently discovered this solution when I was having the same problem.) Jim Clark On May 19, 2013, at 10:12 AM, geo909 wrote: > Hi all, > > I am using Sa

[sage-support] Re: Coefficients of polynomial over finite field are not reduced?

2013-05-19 Thread geo909
Thank you very much! I couldn't understand what I was doing wrong for the life of me, now it's clear. On Monday, May 6, 2013 2:05:56 AM UTC-3, Simon King wrote: > > Hi, > > On 2013-05-05, William Stein > wrote: > >> F =3D GF(3) > >> R. =3D F[] > >> T(x)=3D5*x^2+3 > > > > This is wrong. Do

[sage-support] Notebook: How to print long output lines (>72 characters) without breaks?

2013-05-19 Thread geo909
Hi all, I am using Sage 4.3 with the notebook interface. I would like to have very long output lines, probably 100 characters or more, without breaks on the screen. For instance, if I give print 72*"x" I get xxx which is fine.