diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-01-05 00:46:19 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-01-05 00:46:19 +0000 |
commit | fc95346cc7568d2464cb4daa955b947d5b42a457 (patch) | |
tree | 5e088ffeee4714da48cb68b5d84f1c642c9d088a /numpy/lib/mlab.py | |
parent | 605f8a5533071a0939fb5cbbc94dafede8006074 (diff) | |
download | numpy-fc95346cc7568d2464cb4daa955b947d5b42a457.tar.gz |
Fixed problem in mlab.py
Diffstat (limited to 'numpy/lib/mlab.py')
-rw-r--r-- | numpy/lib/mlab.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/mlab.py b/numpy/lib/mlab.py index f082cdc0d..5a04fe589 100644 --- a/numpy/lib/mlab.py +++ b/numpy/lib/mlab.py @@ -11,4 +11,4 @@ from numpy.core.oldnumeric import cumsum, ptp, mean, std, prod, cumprod, squeeze from polynomial import roots from numpy.random import rand, randn -from numpy.corelinalg import eig, svd +from numpy.linalg import eig, svd |