summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJohn Glover <j@johnglover.net>2012-10-04 10:38:58 +0200
committerJohn Glover <j@johnglover.net>2012-10-04 10:38:58 +0200
commit45074320ccfbde367f41f150cc40fbc5e1a7595d (patch)
treedb48d408777d37eb7e0c917788ea2437838006bd /examples
parent6b113d65e5899f2141536ccc987d9e5bd69394d1 (diff)
downloadsimpl-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.py6
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()