From 2c48f12d0e91b371a2ffcd9bcf15e1e67866c224 Mon Sep 17 00:00:00 2001 From: Malik Ali Date: Fri, 5 Dec 2025 14:35:19 +0100 Subject: [PATCH] Cleaned up localization code for the 3rd time! --- student_code/my_firstborn.py | 1 + 1 file changed, 1 insertion(+) diff --git a/student_code/my_firstborn.py b/student_code/my_firstborn.py index f74537c..bdbc361 100644 --- a/student_code/my_firstborn.py +++ b/student_code/my_firstborn.py @@ -118,6 +118,7 @@ if __name__ == "__main__": real_y = record_y[i] filenames.append(f"../files/Student Recordings/record_x{real_x}_y{real_y}.wav") + # Performing the location estimation on each file for i in range(len(filenames)): sampling_rate, recordings = wavfile.read(filenames[i]) print(f"\nRecording {i+1}: {filenames[i]}")