diff options
author | John Glover <glover.john@gmail.com> | 2010-10-21 13:39:28 +0100 |
---|---|---|
committer | John Glover <glover.john@gmail.com> | 2010-10-21 13:39:28 +0100 |
commit | ce65c30264be9683dd3a59b35730d2f31e02d37f (patch) | |
tree | 90aaf2e77526af9ba099e76175956d0dd6a37633 /plot.py | |
parent | b46b988f164f983fc889c7bc0c96953e4609d27a (diff) | |
download | simpl-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.py | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -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) + |