summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJohn Glover <glover.john@gmail.com>2010-11-08 22:20:07 +0000
committerJohn Glover <glover.john@gmail.com>2010-11-08 22:20:07 +0000
commit8ffd29c8b8b9ee417f90e89d99458ff177e09e10 (patch)
tree79d616969ac8c184f02a7bbc6f8ba5de5397f4fd /tests
parent8f932f334f9de58106814822d6a7371acbc9dee1 (diff)
downloadsimpl-8ffd29c8b8b9ee417f90e89d99458ff177e09e10.tar.gz
simpl-8ffd29c8b8b9ee417f90e89d99458ff177e09e10.tar.bz2
simpl-8ffd29c8b8b9ee417f90e89d99458ff177e09e10.zip
Prints sinusoidal model data, useful for debugging
Diffstat (limited to 'tests')
-rw-r--r--tests/debug.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/debug.py b/tests/debug.py
new file mode 100644
index 0000000..9e6d1b8
--- /dev/null
+++ b/tests/debug.py
@@ -0,0 +1,15 @@
+
+def print_peaks(frames):
+ for n, f in enumerate(frames):
+ for p in f:
+ print str(n) + ":", p.frequency
+
+def print_partials(partials):
+ for partial_num, partial in enumerate(partials):
+ print partial_num,
+ print "(" + str(partial.starting_frame) + " to",
+ print str(partial.starting_frame + len(partial.peaks)) + "):",
+ for peak_number, peak in enumerate(partial.peaks):
+ print peak.frequency,
+ print
+