diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-01-04 22:57:46 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-01-04 22:57:46 +0000 |
commit | 961f7f5348dce942991e98e48a966f458bb26273 (patch) | |
tree | d09589545aa7b3e5c3d8caa6ca4a59e740ce3504 /numpy/lib/mlab.py | |
parent | 6d9c86cde543110e1b5937e2b217eb1374ee9adf (diff) | |
parent | 0f05f3848fddb57a5ae895d8ac0f9d728ab8a9ed (diff) | |
download | numpy-961f7f5348dce942991e98e48a966f458bb26273.tar.gz |
Merged r1773:1791 branch of numpy into main trunk
Diffstat (limited to 'numpy/lib/mlab.py')
-rw-r--r-- | numpy/lib/mlab.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/numpy/lib/mlab.py b/numpy/lib/mlab.py new file mode 100644 index 000000000..f082cdc0d --- /dev/null +++ b/numpy/lib/mlab.py @@ -0,0 +1,14 @@ +# This module is for compatibility only. All functions are defined elsewhere. + +from numpy.core.numeric import * + +from twodim_base import eye, tri, diag, fliplr, flipud, rot90, tril, triu +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 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 |