diff options
author | Travis Oliphant <oliphant@enthought.com> | 2005-12-25 10:19:10 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2005-12-25 10:19:10 +0000 |
commit | 5fa9528d94fa8512a6ce1017b965f2701ce54e96 (patch) | |
tree | ddbe159b186227f8fcb0e28c5e011c438f31bbd0 /scipy/corefft/info.py | |
parent | 25ddd8d255ecc33d6c5a8b1d0a428ac8961987f7 (diff) | |
download | numpy-5fa9528d94fa8512a6ce1017b965f2701ce54e96.tar.gz |
Eliminate basic and move everything to corefft, corelinalg, or corerandom
Diffstat (limited to 'scipy/corefft/info.py')
-rw-r--r-- | scipy/corefft/info.py | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/scipy/corefft/info.py b/scipy/corefft/info.py index bb4217419..67b2fa5e5 100644 --- a/scipy/corefft/info.py +++ b/scipy/corefft/info.py @@ -1,13 +1,8 @@ """\ -Basic tools -=========== - -linalg - lite version of scipy.linalg -fftpack - lite version of scipy.fftpack -helper - lite version of scipy.linalg.helper +Core FFT routines +================== """ depends = ['base'] -global_symbols = ['fft','ifft','rand','randn', - 'linalg','fftpack','random'] +global_symbols = ['fft','ifft'] |