diff options
author | endolith <endolith@gmail.com> | 2012-11-26 13:40:21 -0500 |
---|---|---|
committer | endolith <endolith@gmail.com> | 2012-11-26 13:49:26 -0500 |
commit | 2596867bd3165fcde339cbb06d8879085bc5d3b1 (patch) | |
tree | 7ffede08d2920512741a3d76182d780dadfeceed /numpy/fft/fftpack.py | |
parent | 749e5c1c47a12530018839edf8358457d74224ad (diff) | |
download | numpy-2596867bd3165fcde339cbb06d8879085bc5d3b1.tar.gz |
DOC: Reword "Hermite symmetry", clarify units of sample spacing
Diffstat (limited to 'numpy/fft/fftpack.py')
-rw-r--r-- | numpy/fft/fftpack.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/numpy/fft/fftpack.py b/numpy/fft/fftpack.py index 472d3e06c..2f8982d3c 100644 --- a/numpy/fft/fftpack.py +++ b/numpy/fft/fftpack.py @@ -297,8 +297,7 @@ def rfft(a, n=None, axis=-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 must be purely real due to the Hermite - symmetry. + the zero-frequency term 0*fs, which is real due to Hermitian symmetry. If `n` is even, ``A[-1]`` contains the term representing both positive and negative Nyquist frequency (+fs/2 and -fs/2), and must also be purely |