Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace iaf_neuron by iaf_psc_alpha in MUSIC tutorial #1330

Merged
merged 1 commit into from
Nov 5, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/tutorials/music_tutorial/music_tutorial_2.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ configuration file:
import nest
nest.SetKernelStatus({"overwrite_files": True})

neurons = nest.Create('iaf_neuron', 2, [{'I_e': 400.0}, {'I_e': 405.0}])
neurons = nest.Create('iaf_psc_alpha', 2, [{'I_e': 400.0}, {'I_e': 405.0}])

music_out = nest.Create('music_event_out_proxy', 1,
params = {'port_name':'p_out'})
Expand All @@ -40,7 +40,7 @@ and one with 405mA, just so they will respond differently. If you use
ipython to work interactively, you can check their current status
dictionary with ``nest.GetStatus(neurons)``. The definitive
documentation for NEST nodes is the header file, in this case
``models/iaf_neuron.h`` in the NEST source.
``models/iaf_psc_alpha.h`` in the NEST source.

We create a single ``music_event_out_proxy`` for our
output on line 8, and set the port name. We loop over all the neurons on
Expand Down