From bb080c5692ab978bf60c0908fbd0c49222dbeb9a Mon Sep 17 00:00:00 2001 From: Charles Harris Date: Wed, 5 May 2010 03:34:51 +0000 Subject: ENH: Do some housekeeping for the newly added slogdet function. --- doc/source/reference/routines.linalg.rst | 1 + numpy/linalg/linalg.py | 2 ++ 2 files changed, 3 insertions(+) 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: -- cgit v1.2.1