[sage-support] labels on the frame of a 3d plot

2011-08-18 Thread davidp
Is there a way to turn off the labels on the frame in a 3d plot? I was hoping something like this might work: var('x y') plot3d(sin(x*y),(x,-2,2),(y,-2,2)).show(labels=false) I know that I can set frame=false to get rid of the frame entirely, but that is not what I am looking for. Is there some

[sage-support] Re: Using PGL matrix groups

2011-08-18 Thread John Cremona
On Aug 18, 8:24 pm, David Joyner wrote: > On Thu, Aug 18, 2011 at 3:12 PM, John Cremona wrote: > > I wanted to work in the group PGL(2,q), and got off to a good start: > > > sage: G = PGL(2,13) > > sage: G.order().factor() > > 2^3 * 3 * 7 * 13 > > sage: G.order() == 13*(13^2-1) > > True > > > b

Re: [sage-support] Using PGL matrix groups

2011-08-18 Thread David Joyner
On Thu, Aug 18, 2011 at 3:12 PM, John Cremona wrote: > I wanted to work in the group PGL(2,q), and got off to a good start: > > > sage: G = PGL(2,13) > sage: G.order().factor() > 2^3 * 3 * 7 * 13 > sage: G.order() == 13*(13^2-1) > True > > but I could not create elements of G, which seemed to thin

[sage-support] Using PGL matrix groups

2011-08-18 Thread John Cremona
I wanted to work in the group PGL(2,q), and got off to a good start: sage: G = PGL(2,13) sage: G.order().factor() 2^3 * 3 * 7 * 13 sage: G.order() == 13*(13^2-1) True but I could not create elements of G, which seemed to think they were permutations! sage: G.identity() () sage: G.an_element() (

[sage-support] Re: Converting Restructured Text to a SWS

2011-08-18 Thread David Monarres
That looks perfect, but I can only get one of the patches to apply. I must be missing something. (flask notebook?) -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@googlegroups.com For more options, vis

Re: [sage-support] Re: how to a copy of a nested list?

2011-08-18 Thread Robert Bradshaw
On Thu, Aug 18, 2011 at 12:48 AM, wrote: >  Hello! > > On Thu, 18 Aug 2011 00:35:21 -0700 (PDT) > Stan Schymanski wrote: > >> Dear Robert, >> >> Thanks a lot for your help, this is exactly what I wanted. I still >> don't get why it is necessary to import a special function to perform >> such a s

[sage-support] Re: Converting Restructured Text to a SWS

2011-08-18 Thread kcrisman
See http://trac.sagemath.org/sage_trac/ticket/11459, which is waiting for review! Sebastien would love this to finally be in Sage proper, I'm quite sure. On Aug 18, 2:32 pm, David Monarres wrote: > Hello All, > > I was wondering if there were any standard ways to convert restructured text > file

[sage-support] Converting Restructured Text to a SWS

2011-08-18 Thread David Monarres
Hello All, I was wondering if there were any standard ways to convert restructured text file to Sage worksheets (sws)? I have noticed that the Sage tutorial is included in the notebook as a live worksheet and we would like to do something similar. Thank you in advance for all of your help. Da

[sage-support] Re: [sage-marketing] Happy First Birthday to...

2011-08-18 Thread Harald Schilly
Wow, already 1 year, time flies by! On Thu, Aug 18, 2011 at 17:09, kcrisman wrote: > Maybe Harald has some fun b-day stats for our friend.  Have fun! Unfortunately no, because there is no tracking code. Whoever maintains it, I can send you the snippets. H -- To post to this group, send email

[sage-support] Happy First Birthday to...

2011-08-18 Thread kcrisman
...the newest member of the Sage stable of resources, ask.sagemath.org! Here is the first (sample) question, asked one year ago. http://ask.sagemath.org/question/1/sample-question-how-do-i-compute-symbolic Question 706 was asked within the last 12 hours. Maybe Harald has some fun b-day stats fo

[sage-support] Re: how to a copy of a nested list?

2011-08-18 Thread Jason Grout
On 8/18/11 2:35 AM, Stan Schymanski wrote: Dear Robert, Thanks a lot for your help, this is exactly what I wanted. I still don't get why it is necessary to import a special function to perform such a standard thing. "import copy" has the affect that suddenly I cannot do copy(L) any more, but I h

[sage-support] Re: how to a copy of a nested list?

2011-08-18 Thread Simon King
PS: On 18 Aug., 09:35, Stan Schymanski wrote: > Thanks a lot for your help, this is exactly what I wanted. I still > don't get why it is necessary to import a special function... I just noticed that deepcopy IS already imported in Sage (so, you only need to import it explicitly if you use it in

[sage-support] Re: how to a copy of a nested list?

2011-08-18 Thread Simon King
Hi Stan, On 18 Aug., 09:35, Stan Schymanski wrote: > Thanks a lot for your help, this is exactly what I wanted. I still > don't get why it is necessary to import a special function to perform > such a standard thing. deepcopy is a lot slower than copy: sage: import copy sage: L = srange(100)

Re: [sage-support] Re: how to a copy of a nested list?

2011-08-18 Thread v_2e
Hello! On Thu, 18 Aug 2011 00:35:21 -0700 (PDT) Stan Schymanski wrote: > Dear Robert, > > Thanks a lot for your help, this is exactly what I wanted. I still > don't get why it is necessary to import a special function to perform > such a standard thing. "import copy" has the affect that sudde

[sage-support] Re: how to a copy of a nested list?

2011-08-18 Thread Stan Schymanski
Dear Robert, Thanks a lot for your help, this is exactly what I wanted. I still don't get why it is necessary to import a special function to perform such a standard thing. "import copy" has the affect that suddenly I cannot do copy(L) any more, but I have to do copy.copy(L) instead. Since copy(L)