diff options
author | John Glover <glover.john@gmail.com> | 2010-11-08 22:20:07 +0000 |
---|---|---|
committer | John Glover <glover.john@gmail.com> | 2010-11-08 22:20:07 +0000 |
commit | 8ffd29c8b8b9ee417f90e89d99458ff177e09e10 (patch) | |
tree | 79d616969ac8c184f02a7bbc6f8ba5de5397f4fd /tests | |
parent | 8f932f334f9de58106814822d6a7371acbc9dee1 (diff) | |
download | simpl-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.py | 15 |
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 + |