How can I set a random refractory period (different for every neuron) in a population with SetDefaults()?
Dear Giovanni,
After creating the neurons, you need to manually change their refractory period:
nodes = nest.Create("iaf_cond_exp", 100)) # In[13]: for neuron in nodes: nest.SetStatus( [neuron], {“t_ref": np.random.normal(2,1)})
Kind regards, Nosratullah Mohammadi
On 18 Aug 2020 AD, at 19:31, giovannidisarra g.disarra@gmail.com wrote:
How can I set a random refractory period (different for every neuron) in a population with SetDefaults()? _______________________________________________ NEST Users mailing list -- users@nest-simulator.org To unsubscribe send an email to users-leave@nest-simulator.org