diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2019-01-30 13:53:30 -0600 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2019-01-30 13:53:30 -0600 |
commit | 2096b6d20d45e990a77ebea6735a41c191f008b0 (patch) | |
tree | 71f05a14c6a207dbe35fa9b6cba1cd1ea062bb5e /numpy/linalg | |
parent | 4ba65876181769e92323060adef01f6b10ab4ee4 (diff) | |
download | numpy-2096b6d20d45e990a77ebea6735a41c191f008b0.tar.gz |
DOC: fix invalid escape sequence
Diffstat (limited to 'numpy/linalg')
-rw-r--r-- | numpy/linalg/linalg.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/linalg/linalg.py b/numpy/linalg/linalg.py index 0f2715319..304fce69f 100644 --- a/numpy/linalg/linalg.py +++ b/numpy/linalg/linalg.py @@ -2130,7 +2130,7 @@ def _lstsq_dispatcher(a, b, rcond=None): @array_function_dispatch(_lstsq_dispatcher) def lstsq(a, b, rcond="warn"): - """ + r""" Return the least-squares solution to a linear matrix equation. Solves the equation :math:`a x = b` by computing a vector `x` that |