[sympy] Re: switch manager

2009-07-15 Thread smichr
On Jul 13, 3:30 am, "Aaron S. Meurer" wrote: > think that powsimp() could benefit from this? When I rewrote it > several weeks ago, I added a switch "combine" to control the two > different combining methods (see the docstring for more info). So > basically, you can do combine='exp' to only c

[sympy] How test if a formula is polynomial regarding to log x

2009-07-15 Thread Christophe
Hello, I would like to know that for example (log(x) + 1)-((log(x)**3+7) is a polynom of log(x). How can I do ? Best regards. Christophe. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "sympy" group. To post to th

[sympy] Re: switch manager

2009-07-15 Thread Aaron S. Meurer
On Jul 15, 2009, at 4:58 AM, smichr wrote: > > > > On Jul 13, 3:30 am, "Aaron S. Meurer" wrote: >> think that powsimp() could benefit from this? When I rewrote it >> several weeks ago, I added a switch "combine" to control the two >> different combining methods (see the docstring for more info

[sympy] Re: How test if a formula is polynomial regarding to log x

2009-07-15 Thread Aaron S. Meurer
Use cse() (common subexpression elimination). It will replace the logs with dummy variables, which you can then see is a polynomial. In [8]: cse((log(x) + 1)-((log(x)**3+7))) Out[8]: ([(x0, log(x))], [-6 + x0 - x0**3]) I think you can then tell that this is a Polynomial by trying to instanti

[sympy] Re: How test if a formula is polynomial regarding to log x

2009-07-15 Thread Christophe
Indeed I know how to test is an expression is a ploynom regarding to one variable. The use of ces() will solve my problem. Thanks a lot. Christophe. == Aaron S. Meurer a écrit : > Use cse() (common subexpression elimination). It

[sympy] Re: I thought you might like this!

2009-07-15 Thread Ondrej Certik
On Wed, Jul 15, 2009 at 1:51 PM, sunnysharmagts wrote: > If you can't see this email, please click here. I apologize for this. He joined the group in Mon, Dec 29 2008 9:15 am, and he posted regular emails to the group before, so he was not moderated. I put him back to moderation, seems like some

[sympy] Re: I thought you might like this!

2009-07-15 Thread Robert Kern
On Wed, Jul 15, 2009 at 15:01, Ondrej Certik wrote: > > On Wed, Jul 15, 2009 at 1:51 PM, sunnysharmagts > wrote: >> If you can't see this email, please click here. > > I apologize for this. He joined the group in  Mon, Dec 29 2008 9:15 > am, and he posted regular emails to the group before, so he

[sympy] Announce: Sympy 0.6.5 rc2 released

2009-07-15 Thread Fabian Pedregosa
We are releasing another release candidate before the final 0.6.5 release, since we found some bugs in the last release candidate and wanted to make sure we did not break anything. Please test this so we can make a final release this week. Changes since last stable release --

[sympy] Re: Latex Printing: replacing 'inline' with 'mode'

2009-07-15 Thread Ryan Krauss
Any thoughts on this? On Mon, Jul 13, 2009 at 11:10 AM, Ryan Krauss wrote: > Sorry, this is a duplicate post if you follow the disussions on the google > codesite for this issue. I wanted to get as much input as possible. > Following a suggestion from Ondrej, I am replacing 'inline' = True or F

[sympy] Re: Latex Printing: replacing 'inline' with 'mode'

2009-07-15 Thread Ondrej Certik
On Mon, Jul 13, 2009 at 10:10 AM, Ryan Krauss wrote: > Sorry, this is a duplicate post if you follow the disussions on the google > codesite for this issue.  I wanted to get as much input as possible. > Following a suggestion from Ondrej, I am replacing 'inline' = True or False > with 'mode' = 'in

[sympy] [ANN] Announcing the SciPy conference schedule

2009-07-15 Thread Gael Varoquaux
The SciPy conference committee is pleased to announce the schedule of the conference: http://conference.scipy.org/schedule This year’s program is very rich. In order to limit the number of interesting talks that we had to turn down, we decided to reduce the length of talks. Although this results

[sympy] Re: Latex Printing: replacing 'inline' with 'mode'

2009-07-15 Thread Ryan Krauss
Hmmm. I may have pushed the wrong branch. That patch doesn't look right. On Wed, Jul 15, 2009 at 8:06 PM, Ondrej Certik wrote: > > On Mon, Jul 13, 2009 at 10:10 AM, Ryan Krauss wrote: > > Sorry, this is a duplicate post if you follow the disussions on the > google > > codesite for this iss

[sympy] plan for the next month

2009-07-15 Thread Ondrej Certik
Hi, SymPy was accepted both for the tutorial and a 40 min talk at the SciPy 2009 conference: http://conference.scipy.org/schedule http://conference.scipy.org/abstract?id=3 I'll give the tutorial using sympy that is in all distributions/Sage, e.g. 0.6.4, or even older, like 0.6.2 in EPD. However

[sympy] Re: Latex Printing: replacing 'inline' with 'mode'

2009-07-15 Thread Ondrej Certik
On Wed, Jul 15, 2009 at 9:41 PM, Ryan Krauss wrote: > Hmmm.  I may have pushed the wrong branch.  That patch doesn't look > right. I am still on IRC, feel free to come, we'll fix it. Ondrej --~--~-~--~~~---~--~~ You received this message because you are subsc

[sympy] Re: plan for the next month

2009-07-15 Thread Aaron S. Meurer
Sounds great. Please post the slides (or if it is recorded, post that) after your presentation. The abstract mentions that you will talk about how SymPy started, and I am interested in learning about that. Otherwise, the favorite of mine from below is the sympyx core, because I will be

[sympy] Re: plan for the next month

2009-07-15 Thread Ondrej Certik
On Wed, Jul 15, 2009 at 10:29 PM, Aaron S. Meurer wrote: > > Sounds great.  Please post the slides (or if it is recorded, post > that) after your presentation.  The abstract mentions that you will > talk about how SymPy started, and I am interested in learning about > that. I have some stuff in s

[sympy] Latex Printing

2009-07-15 Thread william ratcliff
Hi! My student, William Flynn, has been working a lot this summer using sympy--thanks for all of the efforts on this project. We're doing some work in a windows environment and find that pretty printing (to generate pngs) still has a problem. Our hack at the moment is to use the python subproce

[sympy] Re: plan for the next month

2009-07-15 Thread william ratcliff
I just wanted to check--will the patches for noncommutative numbers be included in this release? Thanks, William On Thu, Jul 16, 2009 at 12:16 AM, Ondrej Certik wrote: > > Hi, > > SymPy was accepted both for the tutorial and a 40 min talk at the > SciPy 2009 conference: > > http://conference.sci

[sympy] Re: Latex Printing

2009-07-15 Thread Aaron S. Meurer
On Jul 15, 2009, at 10:47 PM, william ratcliff wrote: > Hi! My student, William Flynn, has been working a lot this summer > using sympy--thanks for all of the efforts on this project. We're > doing some work in a windows environment and find that pretty > printing (to generate pngs) sti

[sympy] Re: plan for the next month

2009-07-15 Thread Ondrej Certik
On Wed, Jul 15, 2009 at 10:48 PM, william ratcliff wrote: > I just wanted to check--will the patches for noncommutative numbers be > included in this release? If you mean this: http://code.google.com/p/sympy/issues/detail?id=1358 it didn't, as the patches are not ready yet. Fabian helped with t

[sympy] Re: Latex Printing

2009-07-15 Thread Ondrej Certik
On Wed, Jul 15, 2009 at 10:47 PM, william ratcliff wrote: > Hi!  My student, William Flynn, has been working a lot this summer using > sympy--thanks for all of the efforts on this project.   We're doing some Thanks for using it and trying to fix the noncommutative problems and other things. > wo

[sympy] Re: Latex Printing

2009-07-15 Thread william ratcliff
Wow, you guys are quick! We'll check on this tomorrow. Thanks, William On Thu, Jul 16, 2009 at 1:13 AM, Ondrej Certik wrote: > > On Wed, Jul 15, 2009 at 10:47 PM, william > ratcliff wrote: > > Hi! My student, William Flynn, has been working a lot this summer using > > sympy--thanks for all of

[sympy] Re: plan for the next month

2009-07-15 Thread william ratcliff
Thanks! On Thu, Jul 16, 2009 at 1:07 AM, Ondrej Certik wrote: > > On Wed, Jul 15, 2009 at 10:48 PM, william > ratcliff wrote: > > I just wanted to check--will the patches for noncommutative numbers be > > included in this release? > > If you mean this: > > http://code.google.com/p/sympy/issues/d

[sympy] plan for the next month

2009-07-15 Thread Mateusz Paprocki
Hi, On Wed, Jul 15, 2009 at 10:16:10PM -0600, Ondrej Certik wrote: > > Hi, > > SymPy was accepted both for the tutorial and a 40 min talk at the > SciPy 2009 conference: > > http://conference.scipy.org/schedule > http://conference.scipy.org/abstract?id=3 > That's great news. This way we will