diff options
Diffstat (limited to 'numpy/linalg/linalg.py')
-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 f11f905f7..db3484604 100644 --- a/numpy/linalg/linalg.py +++ b/numpy/linalg/linalg.py @@ -1867,7 +1867,7 @@ def lstsq(a, b, rcond=-1): def _multi_svd_norm(x, row_axis, col_axis, op): - """Compute the exteme singular values of the 2-D matrices in `x`. + """Compute the extreme singular values of the 2-D matrices in `x`. This is a private utility function used by numpy.linalg.norm(). |