diff options
author | Antony Lee <anntzer.lee@gmail.com> | 2015-08-06 18:24:47 -0700 |
---|---|---|
committer | Antony Lee <anntzer.lee@gmail.com> | 2015-08-06 18:24:47 -0700 |
commit | d25e681b41fe841d758e85308b1fe29529c5b602 (patch) | |
tree | ada6fff08c71e6def8a88d385a0013b52424784f /numpy/fft/info.py | |
parent | e108e9967cf3ccdceb80696b299d6612a1edb193 (diff) | |
download | numpy-d25e681b41fe841d758e85308b1fe29529c5b602.tar.gz |
Fix #2128 once again.
Not sure why the error was still in the docs.
Diffstat (limited to 'numpy/fft/info.py')
-rw-r--r-- | numpy/fft/info.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/fft/info.py b/numpy/fft/info.py index f7fc95453..cb6526b44 100644 --- a/numpy/fft/info.py +++ b/numpy/fft/info.py @@ -91,7 +91,7 @@ represented by a complex exponential is the sampling interval. The values in the result follow so-called "standard" order: If ``A = -fft(a, n)``, then ``A[0]`` contains the zero-frequency term (the mean of +fft(a, n)``, then ``A[0]`` contains the zero-frequency term (the sum of the signal), which is always purely real for real inputs. Then ``A[1:n/2]`` contains the positive-frequency terms, and ``A[n/2+1:]`` contains the negative-frequency terms, in order of decreasingly negative frequency. |