summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaime <jaime.frio@gmail.com>2015-01-11 23:07:41 -0800
committerJaime <jaime.frio@gmail.com>2015-01-11 23:07:41 -0800
commitbef3f08e778470ea23abbd27e5d4ef3064aa00ef (patch)
tree5696ef083c9686eef98ef83f931d9a9b3df9a3bc
parentb70e2495c58f202f185fac25f9a911af4f831fa2 (diff)
parent22a9c89e0c20ed1314b771579b129d91416d8823 (diff)
downloadnumpy-bef3f08e778470ea23abbd27e5d4ef3064aa00ef.tar.gz
Merge pull request #5442 from tdihp/patch-1
Fix typo in slogdet doc
-rw-r--r--numpy/linalg/linalg.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/linalg/linalg.py b/numpy/linalg/linalg.py
index e8a0845e5..e70227e5a 100644
--- a/numpy/linalg/linalg.py
+++ b/numpy/linalg/linalg.py
@@ -1600,7 +1600,7 @@ def slogdet(a):
"""
Compute the sign and (natural) logarithm of the determinant of an array.
- If an array has a very small or very large determinant, than a call to
+ If an array has a very small or very large determinant, then a call to
`det` may overflow or underflow. This routine is more robust against such
issues, because it computes the logarithm of the determinant rather than
the determinant itself.