Warning

This version of the documentation is NOT an official release. You are looking at ‘latest’, which is in active and ongoing development. You can change versions on the bottom left of the screen.

Music example

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