diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2015-03-07 17:11:43 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2015-03-07 17:13:51 -0700 |
commit | 14c42115f3963ea886ad0263d590f82d0b86bb98 (patch) | |
tree | 6f278f21577e0c464220703b46ac0a1b86b0e9d8 /numpy/linalg/linalg.py | |
parent | f6853ed11d95569dd399d51c9a3624e1156f256c (diff) | |
download | numpy-14c42115f3963ea886ad0263d590f82d0b86bb98.tar.gz |
DOC: Move versionadded 1.6.0 in slogdet to better place.
Put it up top, it matches better with the versionadded 1.8.0 for
stacked matrices.
[skip ci]
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 3b6d0be11..03d7a5028 100644 --- a/numpy/linalg/linalg.py +++ b/numpy/linalg/linalg.py @@ -1649,10 +1649,10 @@ def slogdet(a): Broadcasting rules apply, see the `numpy.linalg` documentation for details. + .. versionadded:: 1.6.0. The determinant is computed via LU factorization using the LAPACK routine z/dgetrf. - .. versionadded:: 1.6.0. Examples -------- |