diff options
author | Matti Picus <matti.picus@gmail.com> | 2022-07-12 17:22:58 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-12 17:22:58 +0300 |
commit | a069ca164c8eb6f16e8edef504cd6526aba0d335 (patch) | |
tree | aa000d52a18244248f031c9cac6d37068d042e32 /numpy/core/numeric.py | |
parent | c85634901cbdffab7b0c1ed174135a939eb5cf0e (diff) | |
parent | b4f0b47563b04f2a36576e664b1b5fe5d2538090 (diff) | |
download | numpy-a069ca164c8eb6f16e8edef504cd6526aba0d335.tar.gz |
Merge pull request #21973 from aricooperdavis/correlate-doc
DOC: correct docstring for numpy.correlate()
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r-- | numpy/core/numeric.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py index cfcd237aa..352f43251 100644 --- a/numpy/core/numeric.py +++ b/numpy/core/numeric.py @@ -682,7 +682,7 @@ def correlate(a, v, mode='valid'): This function computes the correlation as generally defined in signal processing texts: - .. math:: c_k = \sum_n a_{n+k} \cdot \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. |