diff options
Diffstat (limited to 'numpy/fft')
-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. |