summaryrefslogtreecommitdiff
path: root/plot.py
diff options
context:
space:
mode:
authorJohn Glover <glover.john@gmail.com>2010-10-21 13:39:28 +0100
committerJohn Glover <glover.john@gmail.com>2010-10-21 13:39:28 +0100
commitce65c30264be9683dd3a59b35730d2f31e02d37f (patch)
tree90aaf2e77526af9ba099e76175956d0dd6a37633 /plot.py
parentb46b988f164f983fc889c7bc0c96953e4609d27a (diff)
downloadsimpl-ce65c30264be9683dd3a59b35730d2f31e02d37f.tar.gz
simpl-ce65c30264be9683dd3a59b35730d2f31e02d37f.tar.bz2
simpl-ce65c30264be9683dd3a59b35730d2f31e02d37f.zip
Changed from floats to doubles in the C/C++ code, makes Python integration a bit easier. Fixed a bug that would cause SndObjSynthesis to crash if peak values were floats.
Diffstat (limited to 'plot.py')
-rw-r--r--plot.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/plot.py b/plot.py
index 656c160..47c3e4a 100644
--- a/plot.py
+++ b/plot.py
@@ -19,7 +19,7 @@ from pylab import plot, show
def _plot_frame_peaks(frame, frame_number):
"Plot one frame, which is a list of Peak objects"
x_values = [frame_number for x in range(len(frame))]
- y_values = [peak.frequency for peak in frame]
+ y_values = [int(peak.frequency) for peak in frame]
plot(x_values, y_values, "ro")
def plot_peaks(peaks):
@@ -32,7 +32,7 @@ def plot_frame_peaks(peaks):
x_values = []
y_values = []
for peak in peaks:
- x_values.append(peak.frequency)
+ x_values.append(int(peak.frequency))
y_values.append(peak.amplitude)
plot(x_values, y_values, 'ro')
@@ -45,8 +45,9 @@ def plot_partials(partials, show_peaks=True):
y_values = []
for peak_number, peak in enumerate(partial.peaks):
x_values.append(partial.starting_frame + peak_number)
- y_values.append(peak.frequency)
+ y_values.append(int(peak.frequency))
peaks[partial.starting_frame + peak_number].append(peak)
plot(x_values, y_values, "b")
if show_peaks:
- plot_peaks(peaks) \ No newline at end of file
+ plot_peaks(peaks)
+