[Scipy-svn] r5068 - in trunk/scipy/spatial: . tests

scipy-svn at scipy.org scipy-svn at scipy.org
Wed Nov 12 18:18:18 EST 2008


Author: damian.eads
Date: 2008-11-12 17:18:14 -0600 (Wed, 12 Nov 2008)
New Revision: 5068

Modified:
   trunk/scipy/spatial/distance.py
   trunk/scipy/spatial/tests/test_distance.py
Log:
Added tests for scipy.spatial.distance.numobs_dm.

Modified: trunk/scipy/spatial/distance.py
===================================================================
--- trunk/scipy/spatial/distance.py	2008-11-12 23:10:34 UTC (rev 5067)
+++ trunk/scipy/spatial/distance.py	2008-11-12 23:18:14 UTC (rev 5068)
@@ -1534,6 +1534,8 @@
     """
     d = np.asarray(d, order='c')
     is_valid_dm(d, tol=np.inf, throw=True, name='d')
+    if d.shape[0] == 0:
+        raise ValueError("The number of observations cannot be determined on an empty distance matrix.")
     return d.shape[0]
 
 def numobs_y(Y):

Modified: trunk/scipy/spatial/tests/test_distance.py
===================================================================
--- trunk/scipy/spatial/tests/test_distance.py	2008-11-12 23:10:34 UTC (rev 5067)
+++ trunk/scipy/spatial/tests/test_distance.py	2008-11-12 23:18:14 UTC (rev 5068)
@@ -40,7 +40,7 @@
 from numpy.testing import *
 from scipy.spatial.distance import squareform, pdist, cdist, matching, \
                                    jaccard, dice, sokalsneath, rogerstanimoto, \
-                                   russellrao, yule, numobs_y
+                                   russellrao, yule, numobs_y, numobs_dm
 
 _filenames = ["iris.txt",
               "cdist-X1.txt",
@@ -1432,28 +1432,28 @@
 
 class TestNumObsY(TestCase):
 
-    def test_num_obs_y_1(self):
+    def test_numobs_y_1(self):
         "Tests numobs_y(y) on a condensed distance matrix over 1 observations. Expecting exception."
         self.failUnlessRaises(ValueError, self.check_y, 1)
 
-    def test_num_obs_y_2(self):
+    def test_numobs_y_2(self):
         "Tests numobs_y(y) on a condensed distance matrix over 2 observations."
         self.failUnless(self.check_y(2))
 
-    def test_num_obs_y_3(self):
+    def test_numobs_y_3(self):
         "Tests numobs_y(y) on a condensed distance matrix over 3 observations."
         self.failUnless(self.check_y(3))
 
-    def test_num_obs_y_4(self):
+    def test_numobs_y_4(self):
         "Tests numobs_y(y) on a condensed distance matrix over 4 observations."
         self.failUnless(self.check_y(4))
 
-    def test_num_obs_y_5_10(self):
+    def test_numobs_y_5_10(self):
         "Tests numobs_y(y) on a condensed distance matrix between 5 and 15 observations."
         for i in xrange(5, 16):
             self.minit(i)
 
-    def test_num_obs_y_2_100(self):
+    def test_numobs_y_2_100(self):
         "Tests numobs_y(y) on 100 improper condensed distance matrices. Expecting exception."
         a = set([])
         for n in xrange(2, 16):
@@ -1476,3 +1476,30 @@
     def make_y(self, n):
         return np.random.rand((n*(n-1)/2))
 
+class TestNumObsDM(TestCase):
+
+    def test_numobs_dm_0(self):
+        "Tests numobs_dm(D) on a 0x0 distance matrix. Expecting exception."
+        self.failUnlessRaises(ValueError, self.check_D, 0)
+
+    def test_numobs_dm_1(self):
+        "Tests numobs_dm(D) on a 1x1 distance matrix."
+        self.failUnless(self.check_D(1))
+
+    def test_numobs_dm_2(self):
+        "Tests numobs_dm(D) on a 2x2 distance matrix."
+        self.failUnless(self.check_D(2))
+
+    def test_numobs_dm_3(self):
+        "Tests numobs_dm(D) on a 3x3 distance matrix."
+        self.failUnless(self.check_D(2))
+
+    def test_numobs_dm_4(self):
+        "Tests numobs_dm(D) on a 4x4 distance matrix."
+        self.failUnless(self.check_D(4))
+
+    def check_D(self, n):
+        return numobs_dm(self.make_D(n)) == n
+
+    def make_D(self, n):
+        return np.random.rand(n, n)




More information about the Scipy-svn mailing list