summaryrefslogtreecommitdiff
path: root/numpy/fft/fftpack.py
diff options
context:
space:
mode:
authorendolith <endolith@gmail.com>2013-08-30 09:44:14 -0400
committerendolith <endolith@gmail.com>2013-08-30 09:44:14 -0400
commit1ae2b9e15115e76214f51e68322c7309b1f18d33 (patch)
tree863077e4ec1f617c6abda6a42178fd477cef7d94 /numpy/fft/fftpack.py
parentdf664eade973041cf4eb554b2048380b3f0b75ae (diff)
downloadnumpy-1ae2b9e15115e76214f51e68322c7309b1f18d33.tar.gz
DOC: Unlink non-variable 'm', use monospace instead
Diffstat (limited to 'numpy/fft/fftpack.py')
-rw-r--r--numpy/fft/fftpack.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/fft/fftpack.py b/numpy/fft/fftpack.py
index d3964f468..9a169b04c 100644
--- a/numpy/fft/fftpack.py
+++ b/numpy/fft/fftpack.py
@@ -361,7 +361,7 @@ def irfft(a, n=None, axis=-1):
The truncated or zero-padded input, transformed along the axis
indicated by `axis`, or the last one if `axis` is not specified.
The length of the transformed axis is `n`, or, if `n` is not given,
- ``2*(m-1)`` where `m` is the length of the transformed axis of the
+ ``2*(m-1)`` where ``m`` is the length of the transformed axis of the
input. To get an odd number of output points, `n` must be specified.
Raises
@@ -434,7 +434,7 @@ def hfft(a, n=None, axis=-1):
The truncated or zero-padded input, transformed along the axis
indicated by `axis`, or the last one if `axis` is not specified.
The length of the transformed axis is `n`, or, if `n` is not given,
- ``2*(m-1)`` where `m` is the length of the transformed axis of the
+ ``2*(m-1)`` where ``m`` is the length of the transformed axis of the
input. To get an odd number of output points, `n` must be specified.
Raises
@@ -1077,7 +1077,7 @@ def irfftn(a, s=None, axes=None):
The length of each transformed axis is as given by the corresponding
element of `s`, or the length of the input in every axis except for the
last one if `s` is not given. In the final transformed axis the length
- of the output when `s` is not given is ``2*(m-1)`` where `m` is the
+ of the output when `s` is not given is ``2*(m-1)`` where ``m`` is the
length of the final transformed axis of the input. To get an odd
number of output points in the final axis, `s` must be specified.