diff options
author | John Glover <j@johnglover.net> | 2012-10-04 10:38:58 +0200 |
---|---|---|
committer | John Glover <j@johnglover.net> | 2012-10-04 10:38:58 +0200 |
commit | 45074320ccfbde367f41f150cc40fbc5e1a7595d (patch) | |
tree | db48d408777d37eb7e0c917788ea2437838006bd /examples | |
parent | 6b113d65e5899f2141536ccc987d9e5bd69394d1 (diff) | |
download | simpl-45074320ccfbde367f41f150cc40fbc5e1a7595d.tar.gz simpl-45074320ccfbde367f41f150cc40fbc5e1a7595d.tar.bz2 simpl-45074320ccfbde367f41f150cc40fbc5e1a7595d.zip |
[examples] Rename variables in plotpartials for clarity.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/plotpartials.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/plotpartials.py b/examples/plotpartials.py index 65017b0..cf06ae1 100644 --- a/examples/plotpartials.py +++ b/examples/plotpartials.py @@ -11,9 +11,9 @@ audio = simpl.read_wav(sys.argv[1])[0] pd = simpl.LorisPeakDetection() pd.max_peaks = 30 -peaks = pd.find_peaks(audio) +frames = pd.find_peaks(audio) pt = simpl.MQPartialTracking() pt.max_partials = 30 -partials = pt.find_partials(peaks) -simpl.plot_partials(partials, show_peaks=False) +frames = pt.find_partials(frames) +simpl.plot_partials(frames, show_peaks=False) plt.show() |