[Scipy-svn] r4118 - in trunk/scipy/sparse/linalg: . eigen
scipy-svn@scip...
scipy-svn@scip...
Tue Apr 8 15:08:56 CDT 2008
Author: wnbell
Date: 2008-04-08 15:08:51 -0500 (Tue, 08 Apr 2008)
New Revision: 4118
Modified:
trunk/scipy/sparse/linalg/eigen/info.py
trunk/scipy/sparse/linalg/info.py
Log:
added lobpcg to list of eigensolvers
Modified: trunk/scipy/sparse/linalg/eigen/info.py
===================================================================
--- trunk/scipy/sparse/linalg/eigen/info.py 2008-04-08 19:53:27 UTC (rev 4117)
+++ trunk/scipy/sparse/linalg/eigen/info.py 2008-04-08 20:08:51 UTC (rev 4118)
@@ -1,18 +1,21 @@
"""
Sparse Eigenvalue Solvers
-=========================
+-------------------------
-The submodules of sparse.linalg:
+The submodules of sparse.linalg.eigen:
1. arpack: spare eigenvalue solver using iterative methods
+ 2. lobpcg: Locally Optimal Block Preconditioned Conjugate Gradient Method
Examples
-========
+--------
"""
+__docformat__ = "restructuredtext en"
+
#TODO show examples
postpone_import = 1
Modified: trunk/scipy/sparse/linalg/info.py
===================================================================
--- trunk/scipy/sparse/linalg/info.py 2008-04-08 19:53:27 UTC (rev 4117)
+++ trunk/scipy/sparse/linalg/info.py 2008-04-08 20:08:51 UTC (rev 4118)
@@ -1,6 +1,6 @@
"""
Sparse Linear Algebra
-=====================
+---------------------
The submodules of sparse.linalg:
1. eigen: sparse eigenvalue problem solvers
@@ -8,12 +8,13 @@
3. dsolve: direct factorization methods for solving linear systems
Examples
-========
+--------
"""
-
#TODO show examples
+__docformat__ = "restructuredtext en"
+
postpone_import = 1
More information about the Scipy-svn
mailing list