Hi,
I upgraded from 1.0b1 because I saw that the matrix-indexing bug was
already fixed (thanks!). Now there's a new regression:

>>> import numpy as n
>>> n.__version__
'1.0.2891'
>>> a = n.mat(n.eye(3))
>>> n.linalg.cholesky(a)
array([[ 1.,  0.,  0.],
       [ 0.,  1.,  0.],
       [ 0.,  0.,  1.]])

This used to spit out a numpy-matrix, given the numpy-matrix input.

-Sven

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Numpy-discussion mailing list
Numpy-discussion@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/numpy-discussion

Reply via email to