Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/arange.py
diff options
context:
space:
mode:
authorBenjamin Schwartz <bens@alum.mit.edu>2007-09-25 04:50:14 (GMT)
committer Benjamin Schwartz <bens@alum.mit.edu>2007-09-25 04:50:14 (GMT)
commite70559a27d320c859ffa96250260a858273f48a6 (patch)
tree39995b87f696afe888ef8b9cc154c7e8e0d4d410 /arange.py
parent4b4f208ba7b3679300bb029652a58c79cd9bbad7 (diff)
Fixes from testing on 581
Diffstat (limited to 'arange.py')
-rwxr-xr-xarange.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/arange.py b/arange.py
index 175c5ce..d1b61f1 100755
--- a/arange.py
+++ b/arange.py
@@ -231,7 +231,7 @@ def read_wav(f):
s = w.readframes(n)
n = len(s)/(nc*b)
a = struct.unpack(str(n*nc)+typecode, s)
- return num.array(a[::nc], num.Float)
+ return num.array(a[::nc], num.float)
def cross_cov(a, b):
"""computes the cross-covariance of signals in a and b"""