diff options
Diffstat (limited to 'numpy/linalg')
-rw-r--r-- | numpy/linalg/linalg.py | 2 |
1 files changed, 2 insertions, 0 deletions
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: |