diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-06-19 18:58:21 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-06-19 18:58:21 +0000 |
commit | da320f43a5e3e34d7c12e138f3cd40c0a81dfc28 (patch) | |
tree | 442b9dde8bfbf15736afc562215dfd2a77f575b1 /numpy/dft | |
parent | 43de54a40a4a6894cccc0de71b6319099b710124 (diff) | |
download | numpy-da320f43a5e3e34d7c12e138f3cd40c0a81dfc28.tar.gz |
Fix docstrings in numpy.dft
Diffstat (limited to 'numpy/dft')
-rw-r--r-- | numpy/dft/fftpack.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/dft/fftpack.py b/numpy/dft/fftpack.py index 33c99b0bb..1cb24f2b7 100644 --- a/numpy/dft/fftpack.py +++ b/numpy/dft/fftpack.py @@ -251,7 +251,7 @@ def ifftn(a, s=None, axes=None): def fft2(a, s=None, axes=(-2,-1)): """fft2(a, s=None, axes=(-2,-1)) - The 2d fft of a. This is really just fftnd with different default + The 2d fft of a. This is really just fftn with different default behavior.""" return _raw_fftnd(a,s,axes,fft) @@ -260,7 +260,7 @@ def fft2(a, s=None, axes=(-2,-1)): def ifft2(a, s=None, axes=(-2,-1)): """ifft2(a, s=None, axes=(-2, -1)) - The inverse of fft2d. This is really just inverse_fftnd with different + The inverse of fft2d. This is really just ifftn with different default behavior.""" return _raw_fftnd(a, s, axes, ifft) |