diff options
author | Kilian Lieret <kilian.lieret@posteo.de> | 2022-04-23 13:38:41 +0000 |
---|---|---|
committer | Kilian Lieret <kilian.lieret@posteo.de> | 2022-04-23 13:38:41 +0000 |
commit | abf238e2f7d6cbe5caaf23987ddcd8b35632b409 (patch) | |
tree | 0f8eb3f3b6d8fccfc5c53caa7ecc06a09e5eed3c /numpy/core/numeric.py | |
parent | 24d653f11a55f76b125a91d7d4523052ef14b9b9 (diff) | |
download | numpy-abf238e2f7d6cbe5caaf23987ddcd8b35632b409.tar.gz |
DOC: Improve math typesetting
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r-- | numpy/core/numeric.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py index b058d06bc..4022f3874 100644 --- a/numpy/core/numeric.py +++ b/numpy/core/numeric.py @@ -679,9 +679,9 @@ def correlate(a, v, mode='valid'): Cross-correlation of two 1-dimensional sequences. This function computes the correlation as generally defined in signal - processing texts:: + processing texts: - .. math:: c_k = \sum_n a_{n+k} * \overline{v_n} + .. math:: c_k = \sum_n a_{n+k} \cdot \overline{v_n} with a and v sequences being zero-padded where necessary and :math:`\overline x` denoting complex conjugation. @@ -711,9 +711,9 @@ def correlate(a, v, mode='valid'): Notes ----- The definition of correlation above is not unique and sometimes correlation - may be defined differently. Another common definition is:: + may be defined differently. Another common definition is: - .. math:: c'_k = \sum_n a_{n} * \overline{v_{n+k} + .. math:: c'_k = \sum_n a_{n} \cdot \overline{v_{n+k}} which is related to :math:`c_k` by :math:`c'_k = c_{-k}`. @@ -804,7 +804,7 @@ def convolve(a, v, mode='full'): ----- The discrete convolution operation is defined as - .. math:: (a * v)[n] = \\sum_{m = -\\infty}^{\\infty} a[m] v[n - m] + .. math:: (a * v)_n = \\sum_{m = -\\infty}^{\\infty} a_m v_{n - m} It can be shown that a convolution :math:`x(t) * y(t)` in time/space is equivalent to the multiplication :math:`X(f) Y(f)` in the Fourier |