[sage-devel] updating/replotting of graphs

2014-03-26 Thread jyr
that possible in sage or have I overlooked something? Thanks for any help. jyr -- You received this message because you are subscribed to the Google Groups "sage-devel" group. To unsubscribe from this group and stop receiving emails from it, send an email to sage-deve

[sage-devel] 5.2 does not compile, breaks in atlas

2012-08-14 Thread jyr
Hi, Just tried to compile 5.2 on a RHEL 5.8 system on the latest HP ProLiant ml110 G7 system and the compile breaks while trying to configure and compile atlas. I have downloaded the latest version of atlas3.10.0.tar.bz2 and that compiles out of the box on its own. The original version of atlas3.

[sage-devel] Re: experiment with a new version of the SageTeX package

2010-11-14 Thread jyr
Hi, First of all let me say that I am currently writing a math text book where I am using a lot of sagetex and I think it is a great package! Having said that as a "user" I am a bit concerned that the syntax of sagetex is going to change if I want to publish the latex sources or describe examples

[sage-devel] Failure to calculate ln(factorial(171))

2010-03-07 Thread jyr
Hi, If you copy and paste the following into a command line sage session print ln(factorial(171)) print ln(factorial(171).n(100)) print ln(factorial(171)).n(100) print ln(factorial(171)*1.0) you get: sage: print ln(factorial(171)) log(124101807021766782342484052410310399261660557750169318538895

[sage-devel] Re: Is there a list of environment variables SAGE uses?

2009-07-30 Thread jyr
of a problem on windows in my experience. regards, jyr --~--~-~--~~~---~--~~ To post to this group, send email to sage-devel@googlegroups.com To unsubscribe from this group, send email to sage-devel-unsubscr...@googlegroups.com For more options, visit th

[sage-devel] Re: Can one speed up ATLAS build time?

2009-07-11 Thread jyr
On Jul 11, 6:53 pm, William Stein wrote: > > There have been at least 1-2 recent threads on sage-devel (or > support?) including a complete script posted by somebody about > building multiple packages in parallel. You should search the > archives (I don't have time now). I think William means

[sage-devel] Implementation of Zeilberger and similar algorthms?

2009-07-02 Thread jyr
Hi, I was just wondering whether there are any plans to implement the Zeilberger or WZ and similar algorithms in sage? This might be very useful for a wide range of applications. regards, Jens --~--~-~--~~~---~--~~ To post to this group, send email to sage-deve

[sage-devel] Re: building sage in parallel in parallel

2009-06-22 Thread jyr
Below is a python script that implements the above and sets environment variables for parallel compiles. Just save the script to makesage.py (say) in the sage root dir and run it via python makesage.py -j8 It reduced the sage-4.0.2 compile to 1hour 51 minutes on a dual quad AMD 2GHz machine. --

[sage-devel] How do you doctest an underscored function?

2009-06-09 Thread jyr
Hi, I have been looking for examples and searching the web site, but could not find anything concerning the following problem: If you copy the following code snippet into a file say doctest.py def nounderscore(nn): """ EXAMPLES: sage: nound

[sage-devel] Re: Strange behaviour of sqrt() in sage-4.0

2009-05-31 Thread jyr
On May 31, 10:43 pm, John H Palmieri wrote: > > Now see also . > >   John Great, this also appears to work for the example: sage: sqrt(pi,prec=100) 1.7724538509055160272981674833 thanks, Jens --~--~-~--~~~---~--~

[sage-devel] Strange behaviour of sqrt() in sage-4.0

2009-05-31 Thread jyr
Hi, There is something strange going on with the simple sqrt() function: sage: sqrt(2) sqrt(2) sage: sqrt(2.0) 1.41421356237310 sage: sqrt(2,prec=100) 1.4142135623730950488016887242 but: sage: sqrt(2.0,prec=100) --- TypeEr

[sage-devel] Re: Wigner 3j, 6j, 9j, Clebsch-Gordan, Racah and Gaunt coefficients

2009-05-06 Thread jyr
Just to say that I have opened a ticket now with Dan's changes: http://trac.sagemath.org/sage_trac/ticket/5996 Jens --~--~-~--~~~---~--~~ To post to this group, send email to sage-devel@googlegroups.com To unsubscribe from this group, send email to sage-devel-un

[sage-devel] Re: Wigner 3j, 6j, 9j, Clebsch-Gordan, Racah and Gaunt coefficients

2009-05-05 Thread jyr
Hi Dan, Thanks for reviewing the code. I have included your suggestions and I have done a spell check on the file now and will submit the updated version to trac once I get an account. (Michael?) As a side remark concerning the prec argument, it is passed straight into the sqrt() functions used

[sage-devel] Re: Wigner 3j, 6j, 9j, Clebsch-Gordan, Racah and Gaunt coefficients

2009-05-03 Thread jyr
On May 3, 11:29 am, mabshoff wrote: > On May 3, 3:07 am, jyr wrote: > > > If there is interest I could post it here or get a trac account and > > open a ticket for it for review. > > Yes, do both. > Hi Michael, Could you open a trac account for me please, so t

[sage-devel] Re: Wigner 3j, 6j, 9j, Clebsch-Gordan, Racah and Gaunt coefficients

2009-05-03 Thread jyr
Hi Ondrej, No, I have not come round to publishing it yet in Comput. Phys. Commun. or some similar journal. The thought has occured to me that one could use the index functions for the 3j, 6j, and Gaunt coefficients for a much simpler storage scheme in python by using the index as a key for a d

[sage-devel] Re: Wigner 3j, 6j, 9j, Clebsch-Gordan, Racah and Gaunt coefficients

2009-05-03 Thread jyr
Ok, here it is: --- r""" Calculate Wigner 3j, 6j, 9j, Clebsch-Gordan, Racah and Gaunt coefficients Collection of functions for calculating er 3j, 6j, 9j, Clebsch-Gordan, Racah as well as Gaunt coefficient

[sage-devel] Wigner 3j, 6j, 9j, Clebsch-Gordan, Racah and Gaunt coefficients

2009-05-03 Thread jyr
Hi, I have coded some routines that calculate Wigner 3j, 6j, 9j, Clebsch- Gordan, Racah and Gaunt coefficients (integrals over 3 spherical harmonics) exactly. It is all in a single python file with doc tests. If I am not mistaken then Sage currently does not have such functionality and I think it