summaryrefslogtreecommitdiff
path: root/examples/spike_sync.py
diff options
context:
space:
mode:
authorMario Mulansky <mario.mulansky@gmx.net>2016-03-09 12:30:35 +0100
committerMario Mulansky <mario.mulansky@gmx.net>2016-03-09 12:30:35 +0100
commitee0e980b72c299eed12b7a3afc542fc470dd6d98 (patch)
tree6d63e2fe7bf9805ab6358e31bd0a641d58e40c87 /examples/spike_sync.py
parent9f00431282ef2aae4b98a7a05fe5aa83b0e59673 (diff)
updated examples to use new unified interface
removed all occasions of *multi functions from examples as they are considered deprecated now. Uses unified interface everywhere.
Diffstat (limited to 'examples/spike_sync.py')
-rw-r--r--examples/spike_sync.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/spike_sync.py b/examples/spike_sync.py
index 37dbff4..13ca0ce 100644
--- a/examples/spike_sync.py
+++ b/examples/spike_sync.py
@@ -31,7 +31,7 @@ plt.figure()
plt.subplot(211)
-f = spk.spike_sync_profile_multi(spike_trains)
+f = spk.spike_sync_profile(spike_trains)
x, y = f.get_plottable_data()
plt.plot(x, y, '-b', alpha=0.7, label="SPIKE-Sync profile")