diff options
author | Tim Leslie <tim.leslie@gmail.com> | 2006-03-16 04:05:58 +0000 |
---|---|---|
committer | Tim Leslie <tim.leslie@gmail.com> | 2006-03-16 04:05:58 +0000 |
commit | 8c9cf9ac2a07e9ebb8dae51a264f708229770624 (patch) | |
tree | 6a0f2d4ccb907ca9f7c1068084c901dbce850d18 /numpy/dft | |
parent | 5a712837f673a194353113ebad72d5050ad1f68f (diff) | |
download | numpy-8c9cf9ac2a07e9ebb8dae51a264f708229770624.tar.gz |
clean up some imports
Diffstat (limited to 'numpy/dft')
-rw-r--r-- | numpy/dft/fftpack.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/dft/fftpack.py b/numpy/dft/fftpack.py index eebbc73a5..6310ca071 100644 --- a/numpy/dft/fftpack.py +++ b/numpy/dft/fftpack.py @@ -26,7 +26,8 @@ __all__ = ['fft','inverse_fft', 'ifft', 'real_fft', 'refft', 'fft2d', 'inverse_fft2d', 'real_fftnd', 'real_fft2d', 'inverse_real_fftnd', 'inverse_real_fft2d','fftn','ifftn'] -from numpy.core import * +from numpy.core import asarray, zeros, swapaxes, shape, Complex, conjugate, \ + Float, take import fftpack_lite as fftpack from helper import * |