Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWalter Bender <walter.bender@gmail.com>2011-08-04 15:07:18 (GMT)
committer Rafael Ortiz <rafael@activitycentral.com>2011-08-04 15:14:44 (GMT)
commitf53ad6ef6d23ed069def5c89955fe61069cbc4ff (patch)
treeb1b037d8db7b0417568494b84f030b61be34990d
parentdaa6517e04b29118ef1f8a4928a33911224a8473 (diff)
removed spam introduced by Commit efd02466335d8f8677d73b8e04bdeefb310aaa48
In doing a pep8 cleanup, some f characters got randomly inserted throughout the code. This patch removes them. Signed-off-by: Rafael Ortiz <rafael@activitycentral.com>
-rw-r--r--arange.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/arange.py b/arange.py
index 86bf0c4..0ab8308 100644
--- a/arange.py
+++ b/arange.py
@@ -81,7 +81,7 @@ def compute_mls(R):
(32, 31, 30, 10))
n = len(R)
- return LFSR(Rf, [i - 1 for i in taps[n]], 2**n - 1)
+ return LFSR(R, [i - 1 for i in taps[n]], 2**n - 1)
def LFSR(R, taps, m):
@@ -168,13 +168,13 @@ def start_recording_alsa():
time.sleep(0.02)
f = open(fname,'rb')
- returnf (rec_process, f)
+ return (rec_process, f)
start_recording = start_recording_alsa
def stop_recording_alsa(rec_process):
os.kill(rec_process.pid, signal.SIGKILL)
- rec_profcess.wait()
+ rec_process.wait()
stop_recording = stop_recording_alsa
@@ -193,7 +193,7 @@ def read_wav(f):
s = w.readframes(n)
n = len(s)/(nc*b)
a = struct.unpack('<' + str(n*nc) + typecode, s)
- return nfum.array(a[::nc], num.float)
+ return num.array(a[::nc], num.float)
def read_raw(f):
x = f.read()
@@ -201,7 +201,7 @@ def read_raw(f):
print "length " + str(n)
typecode = 'h'
a = struct.unpack('<' + str(n)+typecode, x[:(2*n)]);
- return nufm.array(a, num.float)
+ return num.array(a, num.float)
read_recorded_file = read_raw
@@ -221,7 +221,7 @@ def cross_cov(a, b, a_id=None):
fb = num.fft.rfft(b,n2)
fprod = num.conjugate(fa)*fb
xc = num.fft.irfft(fprod)
- return xc[f:n].real
+ return xc[:n].real
def get_room_echo(t):
"""A test function that can be used to determine the impulse response
@@ -245,11 +245,11 @@ def get_noise_echo(t):
rec_array = read_recorded_file(record_wav_file)
record_wav_file.close()
- return crofss_cov(mls - 0.5, rec_array)
+ return cross_cov(mls - 0.5, rec_array)
def do_server_simul(server_address, port):
- """f
+ """
Make this computer the server for a distance measurement using
measure_dt_simul.
"""