diff options
| author | Arun Persaud <arun@nubati.net> | 2014-02-08 13:44:01 -0800 |
|---|---|---|
| committer | Arun Persaud <arun@nubati.net> | 2014-02-08 23:42:55 -0800 |
| commit | 8225401e7b1a4ddeac6dcb53ffbf7a35535b3b94 (patch) | |
| tree | be3bfb4f9ea9cf00fea7d1f24e118ea94aec1d16 /numpy/fft | |
| parent | f2d06ceb03490d60a5720581f2a0bef75cb9ce89 (diff) | |
| download | numpy-8225401e7b1a4ddeac6dcb53ffbf7a35535b3b94.tar.gz | |
DOC: fixed small whitespace error in rfft notes
Diffstat (limited to 'numpy/fft')
| -rw-r--r-- | numpy/fft/fftpack.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/fft/fftpack.py b/numpy/fft/fftpack.py index 9a169b04c..873249a23 100644 --- a/numpy/fft/fftpack.py +++ b/numpy/fft/fftpack.py @@ -296,7 +296,7 @@ def rfft(a, n=None, axis=-1): conjugates of the corresponding positive-frequency terms, and the negative-frequency terms are therefore redundant. This function does not compute the negative frequency terms, and the length of the transformed - axis of the output is therefore ``n//2+1``. + axis of the output is therefore ``n//2 + 1``. When ``A = rfft(a)`` and fs is the sampling frequency, ``A[0]`` contains the zero-frequency term 0*fs, which is real due to Hermitian symmetry. |
