First of all, thanks for the tremendous work everyone has done! In the Sage project (http://www.sagemath.org), we have a slightly patched version of scipy 0.6 currently. We recently upgraded to numpy 1.2 and would like to match that with an upgrade of scipy. We are using scipy more and more; for example, in our next version out later this week, we switched our floating point and complex matrices to use a numpy/scipy backend for most calculations. Is there a recommended SVN version that we should update to while waiting for 0.7 to be released? We're looking for an SVN revision that is relatively stable. Incidentally, count me into the crowd that would find scipy much more valuable if there were more frequent releases; Sage users in general would be testing the code and giving feedback as well. Also, we noticed the following behavior in our current version of scipy, but only on an OSX 10.5 box. If it's easy, can someone see if the following commands give the spurious result we see below for the inverse matrix with scipy.linalg.inv on an OSX 10.5 box? I'd test it, but the code works on our old scipy on my 32 bit Ubuntu box. sage: import numpy sage: a=numpy.array([[1,2,3],[4,5,6],[7,8,9]],dtype="float64") sage: import scipy sage: import scipy.linalg sage: import numpy.linalg sage: scipy.linalg.det(a) 0.0 sage: scipy.linalg.inv(a) array([[ -4.50359963e+15, 9.00719925e+15, -4.50359963e+15], [ 9.00719925e+15, -1.80143985e+16, 9.00719925e+15], [ -4.50359963e+15, 9.00719925e+15, -4.50359963e+15]]) sage: numpy.linalg.det(a) 6.6613381477509392e-16 sage: numpy.linalg.inv(a) array([[ -4.50359963e+15, 9.00719925e+15, -4.50359963e+15], [ 9.00719925e+15, -1.80143985e+16, 9.00719925e+15], [ -4.50359963e+15, 9.00719925e+15, -4.50359963e+15]]) Thanks, Jason
jason-sage@creativetrax.com wrote: Hi,
First of all, thanks for the tremendous work everyone has done!
+1
In the Sage project (http://www.sagemath.org), we have a slightly patched version of scipy 0.6 currently. We recently upgraded to numpy 1.2 and would like to match that with an upgrade of scipy.
For the record: we tried to upgrade to 0.7r4752svn when we did the upgrade to numpy 1.2 a couple weeks back and after fixing various deprecation issues in our code we ran into some regressions with the stats module. I know that there is actually activity there, i.e. earlier today, so hopefully someone from our end can sort the issue out and make a precise bug report in case it wasn't something dumb on our end. <SNIP>
Thanks,
Jason
Cheers, Michael
_______________________________________________ SciPy-user mailing list SciPy-user@scipy.org http://projects.scipy.org/mailman/listinfo/scipy-user
On Thu, Nov 13, 2008 at 12:01 PM, <jason-sage@creativetrax.com> wrote:
First of all, thanks for the tremendous work everyone has done!
In the Sage project (http://www.sagemath.org), we have a slightly patched version of scipy 0.6 currently. We recently upgraded to numpy 1.2 and would like to match that with an upgrade of scipy. We are using scipy more and more; for example, in our next version out later this week, we switched our floating point and complex matrices to use a numpy/scipy backend for most calculations.
great.
Is there a recommended SVN version that we should update to while waiting for 0.7 to be released? We're looking for an SVN revision that is relatively stable. Incidentally, count me into the crowd that would find scipy much more valuable if there were more frequent releases; Sage users in general would be testing the code and giving feedback as well.
If you can wait for a couple of days, scipy 0.7 will be there. A beta is immininent (next WE), and a proper release should follow soon after. David
David Cournapeau wrote:
On Thu, Nov 13, 2008 at 12:01 PM, <jason-sage@creativetrax.com> wrote:
First of all, thanks for the tremendous work everyone has done!
In the Sage project (http://www.sagemath.org), we have a slightly patched version of scipy 0.6 currently. We recently upgraded to numpy 1.2 and would like to match that with an upgrade of scipy. We are using scipy more and more; for example, in our next version out later this week, we switched our floating point and complex matrices to use a numpy/scipy backend for most calculations.
great.
Yeah, we are also moving to the buffer interface hopefully in the not too distant future.
Is there a recommended SVN version that we should update to while waiting for 0.7 to be released? We're looking for an SVN revision that is relatively stable. Incidentally, count me into the crowd that would find scipy much more valuable if there were more frequent releases; Sage users in general would be testing the code and giving feedback as well.
If you can wait for a couple of days, scipy 0.7 will be there. A beta is immininent (next WE), and a proper release should follow soon after.
Ok, we will keep an eye on that and let you know if we are still hitting regressions in the stats module.
David
Cheers, Michael
_______________________________________________ SciPy-user mailing list SciPy-user@scipy.org http://projects.scipy.org/mailman/listinfo/scipy-user
participants (3)
-
David Cournapeau
-
jason-sage@creativetrax.com
-
Michael Abshoff