From b4f0b47563b04f2a36576e664b1b5fe5d2538090 Mon Sep 17 00:00:00 2001 From: Ari Cooper Davis <8947634+aricooperdavis@users.noreply.github.com> Date: Tue, 12 Jul 2022 13:15:44 +0100 Subject: DOC: correct docstring for numpy.correlate() --- numpy/core/numeric.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'numpy/core/numeric.py') 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. -- cgit v1.2.1