From 8ffd29c8b8b9ee417f90e89d99458ff177e09e10 Mon Sep 17 00:00:00 2001 From: John Glover Date: Mon, 8 Nov 2010 22:20:07 +0000 Subject: Prints sinusoidal model data, useful for debugging --- tests/debug.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 tests/debug.py (limited to 'tests') 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 + -- cgit v1.2.3