diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-01-04 19:30:36 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-01-04 19:30:36 +0000 |
commit | 5a765123d45616661f7d61f322ce8ba4a518e1aa (patch) | |
tree | 726bc976445a7b5f72e3b1ba751777c813bf4d46 /numpy/lib/mlab.py | |
parent | e706c7d92c4ee41e8e995fb3838bd0931b57efb5 (diff) | |
download | numpy-5a765123d45616661f7d61f322ce8ba4a518e1aa.tar.gz |
Fixed lib
Diffstat (limited to 'numpy/lib/mlab.py')
-rw-r--r-- | numpy/lib/mlab.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/numpy/lib/mlab.py b/numpy/lib/mlab.py index 9085c26be..f082cdc0d 100644 --- a/numpy/lib/mlab.py +++ b/numpy/lib/mlab.py @@ -1,13 +1,13 @@ # This module is for compatibility only. All functions are defined elsewhere. -from numeric import * +from numpy.core.numeric import * from twodim_base import eye, tri, diag, fliplr, flipud, rot90, tril, triu -from oldnumeric import amax as max -from oldnumeric import amin as min +from numpy.core.oldnumeric import amax as max +from numpy.core.oldnumeric import amin as min from function_base import msort, median, trapz, diff, cov, corrcoef, kaiser, blackman, \ bartlett, hanning, hamming, sinc, angle -from oldnumeric import cumsum, ptp, mean, std, prod, cumprod, squeeze +from numpy.core.oldnumeric import cumsum, ptp, mean, std, prod, cumprod, squeeze from polynomial import roots from numpy.random import rand, randn |