Music exampleΒΆ

Run this example as a Jupyter notebook
https://nest-simulator.org/TryItOnEBRAINS.png

For details and troubleshooting see How to run Jupyter notebooks.

This example runs 2 NEST instances and one receiver instance. Neurons on the NEST instances are observed by the music_cont_out_proxy and their values are forwarded through MUSIC to the receiver.

import nest

proxy = nest.Create('music_cont_out_proxy', 1)
proxy.port_name = 'out'
proxy.set(record_from=["V_m"], interval=0.1)

neuron_grp = nest.Create('iaf_cond_exp', 2)
proxy.targets = neuron_grp
neuron_grp[0].I_e = 300.
neuron_grp[1].I_e = 600.

nest.Simulate(200)

Total running time of the script: ( 0 minutes 0.000 seconds)

Gallery generated by Sphinx-Gallery