diff options
-rw-r--r-- | doc/source/reference/routines.linalg.rst | 1 | ||||
-rw-r--r-- | numpy/linalg/linalg.py | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/doc/source/reference/routines.linalg.rst b/doc/source/reference/routines.linalg.rst index 595b02744..4c3c676d9 100644 --- a/doc/source/reference/routines.linalg.rst +++ b/doc/source/reference/routines.linalg.rst @@ -45,6 +45,7 @@ Norms and other numbers linalg.norm linalg.cond linalg.det + linalg.slogdet trace Solving equations and inverting matrices diff --git a/numpy/linalg/linalg.py b/numpy/linalg/linalg.py index a0d191b4b..2831a2dd0 100644 --- a/numpy/linalg/linalg.py +++ b/numpy/linalg/linalg.py @@ -1564,6 +1564,8 @@ def slogdet(a): The determinant is computed via LU factorization using the LAPACK routine z/dgetrf. + .. versionadded:: 2.0.0. + Examples -------- The determinant of a 2-D array [[a, b], [c, d]] is ad - bc: |