From f00a7c6907652ffaba77618d201bc144c25a7d2c Mon Sep 17 00:00:00 2001 From: John Glover Date: Tue, 11 Sep 2012 22:31:24 +0200 Subject: [plot] Don't plot partials that are changing to 0 frequency (killed in SMSPartialTracking). --- simpl/plot/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/simpl/plot/__init__.py b/simpl/plot/__init__.py index 375c50b..aa8bebf 100644 --- a/simpl/plot/__init__.py +++ b/simpl/plot/__init__.py @@ -41,7 +41,8 @@ def plot_partials(frames, show_peaks=False): y = [frames[n].partials[p].frequency, frames[n + 1].partials[p].frequency] amp = frames[n].partials[p].amplitude - if amp: + freq = frames[n + 1].partials[p].frequency + if amp and freq: plt.plot(x, y, color=colours.pbj(amp / max_amp)) if show_peaks: -- cgit v1.2.3