summaryrefslogtreecommitdiff
path: root/scipy/basic/fft.py
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2005-11-16 10:44:51 +0000
committerTravis Oliphant <oliphant@enthought.com>2005-11-16 10:44:51 +0000
commit5866c7eb8942fc9dbc5f1219917baec200b6597c (patch)
tree296365de3c1aba7bae21bb82b77c6796d6e7fdd6 /scipy/basic/fft.py
parentfedd3f1d915afc7ebf31ee8fd9e69e0012ac344e (diff)
downloadnumpy-5866c7eb8942fc9dbc5f1219917baec200b6597c.tar.gz
Fixed svd and eig to be compatible with full scipy. Eliminate warning.
Diffstat (limited to 'scipy/basic/fft.py')
-rw-r--r--scipy/basic/fft.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scipy/basic/fft.py b/scipy/basic/fft.py
index b529746de..0fd886f90 100644
--- a/scipy/basic/fft.py
+++ b/scipy/basic/fft.py
@@ -20,6 +20,7 @@ real_fft2d(a, s=None, axes=(-2,-1))
inverse_real_fft2d(a, s=None, axes=(-2, -1))
"""
from fft_lite import *
+from helper import *
ifft = inverse_fft
refft = real_fft
@@ -37,4 +38,3 @@ ifft2 = inverse_fft2d
refft2 = real_fft2d
irefft2 = inverse_real_fft2d
-from helper import *