[Numpy-svn] r8385 - in trunk: doc/source/reference numpy/linalg

numpy-svn at scipy.org numpy-svn at scipy.org
Tue May 4 23:34:51 EDT 2010


Author: charris
Date: 2010-05-04 22:34:51 -0500 (Tue, 04 May 2010)
New Revision: 8385

Modified:
   trunk/doc/source/reference/routines.linalg.rst
   trunk/numpy/linalg/linalg.py
Log:
ENH: Do some housekeeping for the newly added slogdet function.

Modified: trunk/doc/source/reference/routines.linalg.rst
===================================================================
--- trunk/doc/source/reference/routines.linalg.rst	2010-05-05 03:34:47 UTC (rev 8384)
+++ trunk/doc/source/reference/routines.linalg.rst	2010-05-05 03:34:51 UTC (rev 8385)
@@ -45,6 +45,7 @@
    linalg.norm
    linalg.cond
    linalg.det
+   linalg.slogdet
    trace
 
 Solving equations and inverting matrices

Modified: trunk/numpy/linalg/linalg.py
===================================================================
--- trunk/numpy/linalg/linalg.py	2010-05-05 03:34:47 UTC (rev 8384)
+++ trunk/numpy/linalg/linalg.py	2010-05-05 03:34:51 UTC (rev 8385)
@@ -1564,6 +1564,8 @@
     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:




More information about the Numpy-svn mailing list