diff options
Diffstat (limited to 'tests/debug.py')
-rw-r--r-- | tests/debug.py | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/debug.py b/tests/debug.py deleted file mode 100644 index d91b008..0000000 --- a/tests/debug.py +++ /dev/null @@ -1,13 +0,0 @@ -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 |