diff options
author | Travis Oliphant <oliphant@enthought.com> | 2005-12-28 03:17:55 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2005-12-28 03:17:55 +0000 |
commit | 922f7cf07fcce95f510222b464cdc757f40ef57f (patch) | |
tree | ddc75cce90be2bff70a0c2863c1b4996f1aadf34 /scipy/base/mlab.py | |
parent | 4b61fd0dc145083b566028edc691c5f2d1d5936f (diff) | |
download | numpy-922f7cf07fcce95f510222b464cdc757f40ef57f.tar.gz |
Added an mlab so that there is one file to replace the old MLab functionality.
Diffstat (limited to 'scipy/base/mlab.py')
-rw-r--r-- | scipy/base/mlab.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/scipy/base/mlab.py b/scipy/base/mlab.py new file mode 100644 index 000000000..749600d9b --- /dev/null +++ b/scipy/base/mlab.py @@ -0,0 +1,14 @@ +# This module is for compatibility only. All functions are defined elsewhere. + +from 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 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 polynomial import roots + +from scipy.random import rand, randn +from scipy.corelinalg import eig, svd |