diff options
author | Phaiax <phaiax-github@invisibletower.de> | 2015-12-09 13:08:54 +0100 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2015-12-18 12:43:09 -0700 |
commit | 7fa53390da958cc985bfaeb1620990ddd2255ce8 (patch) | |
tree | e2735294d6314ab372bfad8e30c58ff2915027a1 /numpy/fft/fftpack.py | |
parent | f660a5cfac6ffeecea7bd4e4de4726f324f5af27 (diff) | |
download | numpy-7fa53390da958cc985bfaeb1620990ddd2255ce8.tar.gz |
Fix #6798
Diffstat (limited to 'numpy/fft/fftpack.py')
-rw-r--r-- | numpy/fft/fftpack.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/numpy/fft/fftpack.py b/numpy/fft/fftpack.py index 4ad4f6802..398eec45e 100644 --- a/numpy/fft/fftpack.py +++ b/numpy/fft/fftpack.py @@ -204,9 +204,11 @@ def ifft(a, n=None, axis=-1, norm=None): The input should be ordered in the same way as is returned by `fft`, i.e., ``a[0]`` should contain the zero frequency term, - ``a[1:n/2+1]`` should contain the positive-frequency terms, and + ``a[1:n/2]`` should contain the positive-frequency terms, and ``a[n/2+1:]`` should contain the negative-frequency terms, in order of - decreasingly negative frequency. See `numpy.fft` for details. + decreasingly negative frequency. For an even number of input points, + ``A[n/2]`` represents both positive and negative Nyquist frequency. + See `numpy.fft` for details. Parameters ---------- |