summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Glover <j@johnglover.net>2012-08-11 12:12:29 +0100
committerJohn Glover <j@johnglover.net>2012-08-11 12:12:29 +0100
commitc6f27424c1ac92bf2d0f139a4ae0c50572c1a494 (patch)
tree6ead78fc8d74b11fb19f3044b98d90aa63ffb5d9
parent221b5408473cdcd10d0e77087bc82412b46895aa (diff)
downloadsimpl-c6f27424c1ac92bf2d0f139a4ae0c50572c1a494.tar.gz
simpl-c6f27424c1ac92bf2d0f139a4ae0c50572c1a494.tar.bz2
simpl-c6f27424c1ac92bf2d0f139a4ae0c50572c1a494.zip
[plot] Bug fix: don't interpolate between old and new partials.
-rw-r--r--simpl/plot/__init__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/simpl/plot/__init__.py b/simpl/plot/__init__.py
index c2eded4..dd6ffe7 100644
--- a/simpl/plot/__init__.py
+++ b/simpl/plot/__init__.py
@@ -41,7 +41,8 @@ def plot_partials(frames, show_peaks=True):
y = [frames[n].partials[p].frequency,
frames[n + 1].partials[p].frequency]
amp = frames[n].partials[p].amplitude
- plt.plot(x, y, color=colours.pbj(amp / max_amp))
+ if amp:
+ plt.plot(x, y, color=colours.pbj(amp / max_amp))
if show_peaks:
plot_peaks(frames)