[Scipy-svn] r2507 - trunk/Lib/sparse

scipy-svn at scipy.org scipy-svn at scipy.org
Mon Jan 8 06:06:49 EST 2007


Author: wnbell
Date: 2007-01-08 05:06:48 -0600 (Mon, 08 Jan 2007)
New Revision: 2507

Modified:
   trunk/Lib/sparse/sparse.py
Log:
setdiag() now works for subdiagonals (k < 0)

Resolves ticket #324



Modified: trunk/Lib/sparse/sparse.py
===================================================================
--- trunk/Lib/sparse/sparse.py	2007-01-08 10:42:30 UTC (rev 2506)
+++ trunk/Lib/sparse/sparse.py	2007-01-08 11:06:48 UTC (rev 2507)
@@ -424,13 +424,23 @@
         """Fills the diagonal elements {a_ii} with the values from the
         given sequence.  If k != 0, fills the off-diagonal elements
         {a_{i,i+k}} instead.
+
+        values may have any length.  If the diagonal is longer than values,
+        then the remaining diagonal entries will not be set.  If values if
+        longer than the diagonal, then the remaining values are ignored.
         """
         M, N = self.shape
-        if len(values) > min(M, N+k):
-            raise ValueError, "sequence of target values is too long"
-        for i, v in enumerate(values):
-            self[i, i+k] = v
-        return
+        if (k > 0 and k >= N) or (k < 0 and -k >= M):
+            raise ValueError, "k exceedes matrix dimensions"
+        if k < 0:
+            max_index = min(M+k,N,len(values))
+            for i,v in enumerate(values[:max_index]):
+                self[i - k, i] = v
+        else:
+            max_index = min(M,N-k,len(values))
+            for i,v in enumerate(values[:max_index]):
+                self[i, i + k] = v
+
     
     def save(self, file_name, format = '%d %d %f\n'):
         try:




More information about the Scipy-svn mailing list