summaryrefslogtreecommitdiff
path: root/examples/profiles.py
diff options
context:
space:
mode:
authorMario Mulansky <mario.mulansky@gmx.net>2016-03-09 13:40:43 +0100
committerMario Mulansky <mario.mulansky@gmx.net>2016-03-09 13:40:43 +0100
commitd2c74dd69e4464fb3b0be6ff7218b1e7df5e895b (patch)
tree6d63e2fe7bf9805ab6358e31bd0a641d58e40c87 /examples/profiles.py
parentf7b90618f01d4dbf015b3d21c6c06dec8d26bd9f (diff)
parentee0e980b72c299eed12b7a3afc542fc470dd6d98 (diff)
Merge pull request #21 from mariomulansky/unified_interface0.5.10.5.0
Unified interface
Diffstat (limited to 'examples/profiles.py')
-rw-r--r--examples/profiles.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/profiles.py b/examples/profiles.py
index 05494bd..8412ffb 100644
--- a/examples/profiles.py
+++ b/examples/profiles.py
@@ -29,7 +29,7 @@ print("Average ISI distance:", f.avrg())
print()
# compute the multivariate ISI profile
-f = spk.isi_profile_multi(spike_trains)
+f = spk.isi_profile(spike_trains)
t = 1200
print("Multivariate ISI value at t =", t, ":", f(t))
@@ -56,7 +56,7 @@ print("Average SPIKE distance:", f.avrg())
print()
# compute the multivariate SPIKE profile
-f = spk.spike_profile_multi(spike_trains)
+f = spk.spike_profile(spike_trains)
# SPIKE values at certain points
t = 1200