diff options
-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 4022f3874..d76a8b46d 100644 --- a/numpy/core/numeric.py +++ b/numpy/core/numeric.py @@ -675,7 +675,7 @@ def _correlate_dispatcher(a, v, mode=None): @array_function_dispatch(_correlate_dispatcher) def correlate(a, v, mode='valid'): - """ + r""" Cross-correlation of two 1-dimensional sequences. This function computes the correlation as generally defined in signal |