diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-01-05 07:08:37 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-01-05 07:08:37 +0000 |
commit | f69c9a67449c1dc61ba24e1bc1319e87a89a6388 (patch) | |
tree | 655621327c8e812d1ed96b146d12e34612c1dbcc /numpy/dft | |
parent | fb605c6e86e09a4366af88ddf6e843d7adba5876 (diff) | |
download | numpy-f69c9a67449c1dc61ba24e1bc1319e87a89a6388.tar.gz |
Changed how to get dual numpy/scipy behavior. Use explicit numpy.dual module.
Diffstat (limited to 'numpy/dft')
-rw-r--r-- | numpy/dft/__init__.py | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/numpy/dft/__init__.py b/numpy/dft/__init__.py index 8bfb2d021..236aefdcb 100644 --- a/numpy/dft/__init__.py +++ b/numpy/dft/__init__.py @@ -4,18 +4,5 @@ from info import __doc__ from fftpack import * from helper import * -# re-define duplicated functions if full numpy installed. -try: - import scipy.fftpack -except ImportError: - pass -else: - fft = scipy.fftpack.fft - ifft = scipy.fftpack.ifft - fftn = scipy.fftpack.fftn - ifftn = scipy.fftpack.ifftn - fft2 = scipy.fftpack.fft2 - ifft2 = scipy.fftpack.ifft2 - from numpy.testing import ScipyTest test = ScipyTest().test |