diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-01-05 07:17:48 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-01-05 07:17:48 +0000 |
commit | 10d4896f49e6af4be274367077455dd21fee4044 (patch) | |
tree | 2fac68dfd6a38ac2c3f1d9f219729877a3347bad /numpy/dual.py | |
parent | f69c9a67449c1dc61ba24e1bc1319e87a89a6388 (diff) | |
download | numpy-10d4896f49e6af4be274367077455dd21fee4044.tar.gz |
Removed pkg names from dual
Diffstat (limited to 'numpy/dual.py')
-rw-r--r-- | numpy/dual.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/numpy/dual.py b/numpy/dual.py index 44b7b51c4..ad516e7a4 100644 --- a/numpy/dual.py +++ b/numpy/dual.py @@ -1,7 +1,7 @@ # This module should be used for functions both in numpy and scipy if # you want to use the numpy version if available but the scipy version # otherwise. -# Usage --- import numpy.dual +# Usage --- from numpy.dual import fft, inv __all__ = ['fft','ifft','fftn','ifftn','fft2','ifft2', 'inv','svd','solve','det','eig','eigvals','lstsq', @@ -34,4 +34,7 @@ eigvals = linpkg.eigvals lstsq = linpkg.lstsq pinv = linpkg.pinv cholesky = linpkg.cholesky + +del linpkg +del fftpkg |