[Scipy-svn] r3208 - trunk/Lib/linalg

scipy-svn at scipy.org scipy-svn at scipy.org
Mon Jul 30 11:01:08 EDT 2007


Author: cdavid
Date: 2007-07-30 10:01:04 -0500 (Mon, 30 Jul 2007)
New Revision: 3208

Modified:
   trunk/Lib/linalg/iterative.py
Log:
Forgot to change docstrings in accordance to input which are not overwritten anymore in iterative solvers.

Modified: trunk/Lib/linalg/iterative.py
===================================================================
--- trunk/Lib/linalg/iterative.py	2007-07-30 14:57:57 UTC (rev 3207)
+++ trunk/Lib/linalg/iterative.py	2007-07-30 15:01:04 UTC (rev 3208)
@@ -131,7 +131,7 @@
 
     Optional Inputs:
 
-    x0  -- (0) default starting guess (overwritten with final value)
+    x0  -- (0) default starting guess.
     tol -- (1e-5) relative tolerance to achieve
     maxiter -- (10*n) maximum number of iterations
     xtype  --  The type of the result.  If None, then it will be
@@ -250,7 +250,7 @@
 
     Optional Inputs:
 
-    x0  -- (0) default starting guess (overwritten with final value)
+    x0  -- (0) default starting guess.
     tol -- (1e-5) relative tolerance to achieve
     maxiter -- (10*n) maximum number of iterations
     xtype  --  The type of the result.  If None, then it will be
@@ -362,7 +362,7 @@
 
     Optional Inputs:
 
-    x0  -- (0) default starting guess (overwritten with final value)
+    x0  -- (0) default starting guess.
     tol -- (1e-5) relative tolerance to achieve
     maxiter -- (10*n) maximum number of iterations
     xtype  --  The type of the result.  If None, then it will be
@@ -474,7 +474,7 @@
 
     Optional Inputs:
 
-    x0  -- (0) default starting guess (overwritten with final value)
+    x0  -- (0) default starting guess.
     tol -- (1e-5) relative tolerance to achieve
     maxiter -- (10*n) maximum number of iterations
     xtype  --  The type of the result.  If None, then it will be
@@ -585,7 +585,7 @@
 
     Optional Inputs:
 
-    x0  -- (0) default starting guess (overwritten with final value)
+    x0  -- (0) default starting guess.
     tol -- (1e-5) relative tolerance to achieve
     restrt -- (n) When to restart (change this to get faster performance -- but
                    may not converge).
@@ -700,7 +700,7 @@
 
     Optional Inputs:
 
-    x0  -- (0) default starting guess (overwritten with final value)
+    x0  -- (0) default starting guess.
     tol -- (1e-5) relative tolerance to achieve
     maxiter -- (10*n) maximum number of iterations
     xtype  --  The type of the result.  If None, then it will be




More information about the Scipy-svn mailing list