diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-08-04 23:32:12 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-08-04 23:32:12 +0000 |
commit | f1cca04886d4f63f7b1ed5b382986af3a9ee6a61 (patch) | |
tree | 053f566b31cb6edc24a41b800ec7f2972c4bca40 /numpy/fft/old.py | |
parent | 8f26568de7cc97ac0dcedfd5061e08bb54770b61 (diff) | |
download | numpy-f1cca04886d4f63f7b1ed5b382986af3a9ee6a61.tar.gz |
Many name-changes in oldnumeric. This may break some numpy code that was using the oldnumeric interface.
Diffstat (limited to 'numpy/fft/old.py')
-rw-r--r-- | numpy/fft/old.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/numpy/fft/old.py b/numpy/fft/old.py new file mode 100644 index 000000000..86723af95 --- /dev/null +++ b/numpy/fft/old.py @@ -0,0 +1,19 @@ + +__all__ = ['fft', 'fft2d', 'fftnd', 'hermite_fft', 'inverse_fft', 'inverse_fft2d', + 'inverse_fftnd', 'inverse_hermite_fft', 'inverse_real_fft', 'inverse_real_fft2d', + 'inverse_real_fftnd', 'real_fft', 'real_fft2d', 'real_fftnd'] + +from fftpack import fft +from fftpack import fft2 as fft2d +from fftpack import fftn as fftnd +from fftpack import hfft as hermite_fft +from fftpack import ifft as inverse_fft +from fftpack import ifft2 as inverse_fft2d +from fftpack import ifftn as inverse_fftnd +from fftpack import ihfft as inverse_hermite_fft +from fftpack import irfft as inverse_real_fft +from fftpack import irfft2 as inverse_real_fft2d +from fftpack import irfftn as inverse_real_fftnd +from fftpack import rfft as real_fft +from fftpack import rfft2 as real_fft2d +from fftpack import rfftn as real_fftnd |