Dear all,
 
in this example for structural plasticity with synaptic element, the network has
- 2 spiking populations of StructuralPlasticityNode: one for excitation (size Nexc) and the other for inhibition (size Ninh)
        self.nodes_e = nest.Create('iaf_psc_alpha',  self.number_excitatory_neurons, {'synaptic_elements': synaptic_elements})
        self.nodes_i = nest.Create('iaf_psc_alpha',   self.number_inhibitory_neurons,  {'synaptic_elements': synaptic_elements_i})
 
- and 1 Poisson generator for creating a noise spike, that is sent to all neurons.
        noise = nest.Create('poisson_generator')
        nest.Connect(noise, self.nodes_e, 'all_to_all',  {'weight': self.psc_ext, 'delay': 1.0})
        nest.Connect(noise, self.nodes_i, 'all_to_all',   {'weight': self.psc_ext, 'delay': 1.0})
 
Could someone explain me follows:
1. I understood that at time T, poisson Generator generates one spike. If correct, all neurons receive this spike at the same time instance, ans it makes no sense!
    I do not know if poisson generator generates some spikes and sends them to randomly chosen neurons?
2. How the connection pattern between nodes_e and nodes_i at the beginning?
3. How the neuron connection pattern within nodes_e and within nodes_i at the beginning?
 
Is there any reference paper or documentation about the concept of structural plasticity with synaptic element, that is implemented in NEST?
 
Thank you very much for help.
 
With kind regards
Mit freundlichen Grüßen

Thanh Binh To