diff options
author | John Glover <john.c.glover@nuim.ie> | 2012-01-20 17:17:31 +0000 |
---|---|---|
committer | John Glover <john.c.glover@nuim.ie> | 2012-01-20 17:17:31 +0000 |
commit | bb4f45a40a41111addcaf7c5952d3f0a4a273d30 (patch) | |
tree | 3f56b2404a2bdd2c0cb7c7334b0dc7981e971953 | |
parent | a1f63ba6ec33eba517bbb0773154625183c14d9d (diff) | |
download | simpl-bb4f45a40a41111addcaf7c5952d3f0a4a273d30.tar.gz simpl-bb4f45a40a41111addcaf7c5952d3f0a4a273d30.tar.bz2 simpl-bb4f45a40a41111addcaf7c5952d3f0a4a273d30.zip |
improve error message if trying to plot with no peaks
-rw-r--r-- | simpl/plot/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/simpl/plot/__init__.py b/simpl/plot/__init__.py index 2118745..0c485f0 100644 --- a/simpl/plot/__init__.py +++ b/simpl/plot/__init__.py @@ -44,7 +44,7 @@ def plot_peaks(frames): max_amp = max(max_amp, max([p.amplitude for p in frame.peaks])) # If no max amp then no peaks so return if not max_amp: - print "Warning: no peaks to plot" + print "Warning: no peaks with an amplitude of > 0 to plot, returning" return for frame_number, frame in enumerate(frames): @@ -60,7 +60,7 @@ def plot_partials(frames, show_peaks=False): max_amp = max(max_amp, max([p.amplitude for p in frame.peaks])) # If no max amp then no peaks so return if not max_amp: - print "Warning: no peaks to plot" + print "Warning: no peaks with an amplitude of > 0 to plot, returning" return # Create Partial objects from frames |