[sage-support] Re: Help on creating documentation for an spkg

2009-06-09 Thread simon . king
Dear Mike, On Jun 9, 9:44 pm, Mike Hansen wrote: > The reference manual is not the most straightforward place to start > looking since there is some additional stuff that we do in > devel/doc/common/builder.py to make it easy to add Sage modules to the > reference manual. Actually this is what

[sage-support] Re: Can I delete the "devel" folder?

2009-06-09 Thread msvar...@uol.com.br
Thanks people! Infact I intalled the binary version for Mac OS X. But it seems that the "devel" folder is important anyway. Again, thsnks for the help!!! On 9 jun, 16:49, Minh Nguyen wrote: > Hi Márcio, > > On Wed, Jun 10, 2009 at 5:31 AM, msvar...@uol.com.br > wrote: > > > Hello everybody.

[sage-support] Re: Can I delete the "devel" folder?

2009-06-09 Thread Minh Nguyen
Hi Márcio, On Wed, Jun 10, 2009 at 5:31 AM, msvar...@uol.com.br wrote: > > Hello everybody. > > I have a problem wiht space in my HD and a would like to know if I can > delete the "devel" folder, which is located inside SAGE main folder, > without affecting Sage functionality. It seems that this

[sage-support] Re: Help on creating documentation for an spkg

2009-06-09 Thread Mike Hansen
Hello, On Tue, Jun 9, 2009 at 1:57 AM, Simon King wrote: > How can I tell sphinx where the modules-to-be-documented are? Sphinx just tries to import the modules. It reads the docstrings, etc. via introspection. So, they just need to be somewhere where they can be imported by Python. > Looking

[sage-support] Can I delete the "devel" folder?

2009-06-09 Thread msvar...@uol.com.br
Hello everybody. I have a problem wiht space in my HD and a would like to know if I can delete the "devel" folder, which is located inside SAGE main folder, without affecting Sage functionality. It seems that this folder is important only for those interested in developing... and I am not one of

[sage-support] Re: Can I delete the "devel" folder?

2009-06-09 Thread Harald Schilly
On Jun 9, 9:31 pm, "msvar...@uol.com.br" wrote: > I would like to know if I can > delete the "devel" folder, which is located inside SAGE main folder, > without affecting Sage functionality. Probably not, have you downloaded the binary version or compiled from source? H --~--~-~--~

[sage-support] Re: Program hangs when creating compound function.

2009-06-09 Thread evlu...@gmail.com
Update: Found some resources if they help. An explanation of the theory can be found here: http://www.springerlink.com/content/r44467137l65h5x1/ I think this paper might have some partial examples. http://portal.acm.org/citation.cfm?id=901698 --~--~-~--~~~---~--~~

[sage-support] Re: "Usage Styles" and using scipy

2009-06-09 Thread Jason Grout
Marky Marc wrote: > Thanks for the many useful answers in this thread from several people. > (And thanks for the book on Rubik's Cube, David Joyner ;-) > > Now, once again please forgive these questions if they're silly. > Firstly, regarding neatly typesetting text and maths, I've tried the > fun

[sage-support] Re: "Usage Styles" and using scipy

2009-06-09 Thread Marky Marc
Thanks for the many useful answers in this thread from several people. (And thanks for the book on Rubik's Cube, David Joyner ;-) Now, once again please forgive these questions if they're silly. Firstly, regarding neatly typesetting text and maths, I've tried the funky javascript editor (shift+cl

[sage-support] Program hangs when creating compound function.

2009-06-09 Thread evlu...@gmail.com
Here's the code I'm working with: # Computes the theta correspondence function for the boundary defined by G w/ center a going to 0 def boundaryMapper(G,a,n): B = 2*pi tk = [x*B/n for x in range(n)] # the collocation points Gprime = derivative(G) # generate various intermediate functi

[sage-support] Re: Coercion into power series ring

2009-06-09 Thread Ajay Rawat
thank you. On Tue, Jun 9, 2009 at 6:31 PM, Kwankyu wrote: > > Hi, > > > On Jun 9, 7:22 pm, Ajay Rawat wrote: > > Hi, > > I want to uninstall sage 3.2.3 from my ubuntu 8.04 LTS. > > so that i can install sage 4.0. > > what i have to do. > > Thanking you > > Are you asking me? Just delete the Sa

[sage-support] Re: Coercion into power series ring

2009-06-09 Thread Kwankyu
Hi, On Jun 9, 7:22 pm, Ajay Rawat wrote: > Hi, > I want to uninstall  sage 3.2.3 from my ubuntu 8.04 LTS. > so that i can install sage 4.0. > what i have to do. > Thanking you Are you asking me? Just delete the Sage root directory wherever it is (usually /usr/local/sage). Then install the newe

[sage-support] Re: Coercion into power series ring

2009-06-09 Thread Ajay Rawat
Hi, I want to uninstall sage 3.2.3 from my ubuntu 8.04 LTS. so that i can install sage 4.0. what i have to do. Thanking you -- Ajay Rawat Kalpakkam, IGCAR - Save Himalayas

[sage-support] Re: Coercion into power series ring

2009-06-09 Thread Kwankyu
Hi Robert, Thank you for the explanation. Kwankyu --~--~-~--~~~---~--~~ 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, visit this group a

[sage-support] Re: Help on creating documentation for an spkg

2009-06-09 Thread simon . king
PS: Yes, my conf.py defines extensions = ['sphinx.ext.autodoc'], and yes, I use sphinx within a sage-shell. Cheers, Simon --~--~-~--~~~---~--~~ To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to s

[sage-support] Re: Issues with gcd

2009-06-09 Thread Robert Bradshaw
This is because c in your loop below is a rational number, and the GCD of any set of rational numbers (not all 0) is 1 (because everything is a unit). Write > c = ZZ((d - r*s*t > +a*r*r + b*s*s)/(4*a*b - t*t)) On Jun 7, 2009, at 10:58 A

[sage-support] Re: Coercion into power series ring

2009-06-09 Thread Robert Bradshaw
On Jun 8, 2009, at 5:50 PM, Kwankyu wrote: > I tried change_ring(), without success... > > sage: R.=PowerSeriesRing(QQ) > sage: P.=PolynomialRing(R) > sage: f=t*x+t^2 > sage: g=f/t > sage: f > t*x + t^2 > sage: g > x + t > sage: f.parent() > Univariate Polynomial Ring in x over Power Series Rin

[sage-support] Help on creating documentation for an spkg

2009-06-09 Thread Simon King
Hi! I try to create a documentation for my p-group cohomology spkg, using sphinx. Problem: I am completely lost. Even after looking into the documentation for sphinx and trying to learn from the .rst files in the sage documentation, I can not figure out how it could work. How can I tell sphinx w

[sage-support] Re: sage -t problems with semicolons and line breaks

2009-06-09 Thread Carlo Hamalainen
On Mon, Jun 8, 2009 at 6:20 PM, davidp wrote: > > On the file test.py, consisting of > > """ >    EXAMPLES:: > >        sage: gcd(4,6); >        sage: a = {1:'a', >                   2:'b'} > """ > > running sage -t produces two error messages (see below).  Is it true > that sage -t does not recog