Ticket #662 (closed defect: fixed)
eigh hangup
| Reported by: | Numpty | Owned by: | somebody |
|---|---|---|---|
| Priority: | normal | Milestone: | 1.1.0 |
| Component: | Other | Version: | none |
| Keywords: | Cc: |
Description
numpy version
1.0.4
sys.version
2.5 (r25:51908, Sep 19 2006, 09:52:17) [MSC v.1310 32 bit (Intel)]
import numpy
cov = numpy.array([
[ 77.70273908, 3.51489954, 15.64602427],
[ 3.51489954, 88.97013878, -1.07431931],
[ 15.64602427, -1.07431931, 98.18223512],
])
# or any array I've tried
# This never returns (not within minutes anyway)
vals, vecs = numpy.linalg.eigh(cov)
eig() works and using the gui examples tool from the LAPACK 3.1.1 Windows installation, it seems that the DSYEVD routine mentioned in the docstring succeeds with these inputs.
Change History
Note: See
TracTickets for help on using
tickets.
