Mathematical Python Library

2008-04-07 Thread mc
I'm looking for a library which can do mathematical stuff like solving equations. Or calculation the nulls of a function and so on. Does anyone know one? Thanks in advance! -- http://mail.python.org/mailman/listinfo/python-list

Re: Mathematical Python Library

2008-04-07 Thread Rob Clewley
The closest thing so far is probably going to be a combination of the numpy, scipy, and sympy libraries. The latter is the one with the most functionality for solving equations algebraically, but is also the least mature package at the moment. The first two also provide the basic tools for

Re: Mathematical Python Library

2008-04-07 Thread Cameron Laird
In article [EMAIL PROTECTED], Dennis Lee Bieber [EMAIL PROTECTED] wrote: On Mon, 7 Apr 2008 09:05:57 -0700 (PDT), mc [EMAIL PROTECTED] declaimed the following in comp.lang.python: I'm looking for a library which can do mathematical stuff like solving equations. Or calculation the nulls of a

Re: Mathematical Python Library

2008-04-07 Thread Jaap Spies
Cameron Laird wrote: In article [EMAIL PROTECTED], Dennis Lee Bieber [EMAIL PROTECTED] wrote: On Mon, 7 Apr 2008 09:05:57 -0700 (PDT), mc [EMAIL PROTECTED] declaimed the following in comp.lang.python: I'm looking for a library which can do mathematical stuff like solving equations. Or