[Scipy-svn] r6322 - in trunk: doc/release scipy/linalg

scipy-svn at scipy.org scipy-svn at scipy.org
Fri Apr 9 23:07:21 EDT 2010


Author: warren.weckesser
Date: 2010-04-09 22:07:21 -0500 (Fri, 09 Apr 2010)
New Revision: 6322

Modified:
   trunk/doc/release/0.8.0-notes.rst
   trunk/scipy/linalg/decomp_cholesky.py
Log:
DOC: Add a 'version added' note to the docstring of  cho_solve_banded, and update the release notes with recent changes to linalg.

Modified: trunk/doc/release/0.8.0-notes.rst
===================================================================
--- trunk/doc/release/0.8.0-notes.rst	2010-04-10 02:54:35 UTC (rev 6321)
+++ trunk/doc/release/0.8.0-notes.rst	2010-04-10 03:07:21 UTC (rev 6322)
@@ -106,13 +106,17 @@
 
 A new function, `sweep_poly`, was added.
 
-New special matrix functions (scipy.linalg)
--------------------------------------------
-The functions `circulant` and `hadamard` were added to `scipy.linalg`.
+New functions and others changes in scipy.linalg
+------------------------------------------------
+The functions `circulant`, `hadamard` and `cho_solve_banded` were added
+to `scipy.linalg`.
 
 The function `block_diag` was enhanced to accept scalar and 1D arguments,
 along with the usual 2D arguments.
 
+The function `solveh_banded` no longer returns the Cholesky factorization.  It
+returns just the solution.
+
 ARPACK-based sparse SVD
 -----------------------
 

Modified: trunk/scipy/linalg/decomp_cholesky.py
===================================================================
--- trunk/scipy/linalg/decomp_cholesky.py	2010-04-10 02:54:35 UTC (rev 6321)
+++ trunk/scipy/linalg/decomp_cholesky.py	2010-04-10 03:07:21 UTC (rev 6322)
@@ -219,6 +219,11 @@
     --------
     cholesky_banded : Cholesky factorization of a banded matrix
 
+    Notes
+    -----
+    
+    .. versionadded:: 0.8.0
+
     """
 
     cb = asarray_chkfinite(cb)




More information about the Scipy-svn mailing list