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.

Please note that MUSIC and the recording backend for Arbor are mutually exclusive and cannot be enabled at the same time.

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