[Scipy-svn] r2919 - trunk/Lib/cluster

scipy-svn at scipy.org scipy-svn at scipy.org
Sun Apr 15 00:59:07 EDT 2007


Author: rkern
Date: 2007-04-14 23:59:04 -0500 (Sat, 14 Apr 2007)
New Revision: 2919

Modified:
   trunk/Lib/cluster/vq.py
Log:
Remove dependency on scipy.stats

Modified: trunk/Lib/cluster/vq.py
===================================================================
--- trunk/Lib/cluster/vq.py	2007-04-13 21:46:05 UTC (rev 2918)
+++ trunk/Lib/cluster/vq.py	2007-04-15 04:59:04 UTC (rev 2919)
@@ -19,8 +19,8 @@
 
 from numpy.random import randint
 from numpy import shape, zeros, subtract, sqrt, argmin, minimum, array, \
-     newaxis, arange, compress, equal, common_type, single, double, take
-from scipy.stats import std, mean
+     newaxis, arange, compress, equal, common_type, single, double, take, \
+     std, mean
 
 def whiten(obs):
     """ Normalize a group of observations on a per feature basis




More information about the Scipy-svn mailing list