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/info.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/info.py')
-rw-r--r-- | numpy/fft/info.py | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/numpy/fft/info.py b/numpy/fft/info.py new file mode 100644 index 000000000..4aa9b7d2c --- /dev/null +++ b/numpy/fft/info.py @@ -0,0 +1,29 @@ +"""\ +Core FFT routines +================== + + Standard FFTs + + fft + ifft + fft2 + ifft2 + fftn + ifftn + + Real FFTs + + refft + irefft + refft2 + irefft2 + refftn + irefftn + + Hermite FFTs + + hfft + ihfft +""" + +depends = ['core'] |