[Scipy-svn] r5123 - trunk/doc/releases

scipy-svn at scipy.org scipy-svn at scipy.org
Sun Nov 16 02:04:51 EST 2008


Author: jarrod.millman
Date: 2008-11-16 01:04:50 -0600 (Sun, 16 Nov 2008)
New Revision: 5123

Modified:
   trunk/doc/releases/0.7.0-notes.rst
Log:
rest whitespace fixes


Modified: trunk/doc/releases/0.7.0-notes.rst
===================================================================
--- trunk/doc/releases/0.7.0-notes.rst	2008-11-16 07:03:50 UTC (rev 5122)
+++ trunk/doc/releases/0.7.0-notes.rst	2008-11-16 07:04:50 UTC (rev 5123)
@@ -16,23 +16,35 @@
 * new class ``dia_matrix`` : the sparse DIAgonal format
 * new class ``bsr_matrix`` : sparse Block CSR format
 * new sparse matrix construction functions
+
  * ``sparse.kron`` : sparse Kronecker product
  * ``sparse.bmat`` : sparse version of ``numpy.bmat``
  * ``sparse.vstack`` : sparse version of ``numpy.vstack``
  * ``sparse.hstack`` : sparse version of ``numpy.hstack``
+
 * extraction of submatrices and nonzero values
+
  * ``sparse.tril`` : extract lower triangle
  * ``sparse.kron`` : extract upper triangle
  * ``sparse.find`` : nonzero values and their indices
+
 * ``csr_matrix`` and ``csc_matrix`` now support slicing and fancy indexing
+
  * e.g. ``A[1:3, 4:7]`` and ``A[[3,2,6,8],:]``
+
 * conversions among all sparse formats are now possible
+
  * all formats have member functions such as ``.tocsr()`` and ``.tolil()``
+
 * sparse constructors now accept dense matrices and other sparse formats
+
  * e.g. ``A = csr_matrix( rand(3,3) )`` and ``B = lil_matrix( [[1,2],[3,4]] )``
+
 * efficiency improvements to:
+
  * format conversions
  * sparse matrix arithmetic
+
 * numerous bugfixes
 
 SciPy IO




More information about the Scipy-svn mailing list