diff options
author | Jaime <jaime.frio@gmail.com> | 2015-01-11 23:07:41 -0800 |
---|---|---|
committer | Jaime <jaime.frio@gmail.com> | 2015-01-11 23:07:41 -0800 |
commit | bef3f08e778470ea23abbd27e5d4ef3064aa00ef (patch) | |
tree | 5696ef083c9686eef98ef83f931d9a9b3df9a3bc | |
parent | b70e2495c58f202f185fac25f9a911af4f831fa2 (diff) | |
parent | 22a9c89e0c20ed1314b771579b129d91416d8823 (diff) | |
download | numpy-bef3f08e778470ea23abbd27e5d4ef3064aa00ef.tar.gz |
Merge pull request #5442 from tdihp/patch-1
Fix typo in slogdet doc
-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 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. |