You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/htmldoc/neurons/exact-integration.rst
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,9 +22,9 @@ The leaky integrate-and fire model
22
22
In the leaky integrate-and-fire model, the memory problem is solved by adding a "leak" term :math:`\frac{-1}{R}V` (:math:`R` is the resistance and :math:`\tau=RC`) to the membrane potential:
23
23
24
24
.. math::
25
+
:label: membrane
25
26
26
27
\frac{dV}{dt}=\frac{-1}{\tau}V+\frac{1}{C}I.
27
-
:label: membrane
28
28
29
29
This reflects the diffusion of ions that occurs through the membrane when some equilibrium is not reached in the cell.
Copy file name to clipboardExpand all lines: doc/htmldoc/synapses/connectivity_concepts.rst
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -69,6 +69,7 @@ Projections are created in NEST with the :py:func:`.Connect` function:
69
69
nest.Connect(pre, post)
70
70
nest.Connect(pre, post, conn_spec)
71
71
nest.Connect(pre, post, conn_spec, syn_spec)
72
+
nest.Connect(pre, post, conn_spec, syn_spec, return_synapsecollection=True)
72
73
73
74
In the simplest case, the function just takes the ``NodeCollections`` ``pre`` and ``post``, defining the nodes of
74
75
origin (`sources`) and termination (`targets`) for the connections to be established with the default rule ``all-to-all`` and the synapse model :ref:`static_synapse`.
where :math:`\Gamma_\mathrm{ex}` and :math:`\Gamma_\mathrm{in}` are index sets for presynaptic excitatory and inhibitory neurons respectively, and :math:`\Delta_j` is an index set for the spike times of neuron :math:`j`.
@@ -105,6 +105,8 @@ The specification of this model differs slightly from the one in [1]_. The param
105
105
:math:`g_\mathrm{GABA}`, and :math:`g_\mathrm{NMDA}` have been absorbed into the respective synaptic weights.
106
106
Additionally, the synapses from the external population are not separated from the recurrent AMPA-synapses.
107
107
108
+
See also [2]_ and [3]_.
109
+
108
110
For more implementation details and a comparison to the exact version, see:
.. [1] Wang, X.-J. (1999). Synaptic Basis of Cortical Persistent Activity: The Importance of NMDA Receptors to Working Memory. Journal of Neuroscience, 19(21), 9587–9603. https://doi.org/10.1523/JNEUROSCI.19-21-09587.1999
174
-
.. [2] Brunel, N., & Wang, X.-J. (2001). Effects of Neuromodulation in a Cortical Network Model of Object Working Memory Dominated by Recurrent Inhibition. Journal of Computational Neuroscience, 11(1), 63–85. https://doi.org/10.1023/A:1011204814320
175
+
.. [1] Wang, X.-J. (1999). Synaptic Basis of Cortical Persistent Activity: The
176
+
Importance of NMDA Receptors to Working Memory. Journal of Neuroscience,
@@ -106,6 +106,8 @@ The specification of this model differs slightly from the one in [1]_. The param
106
106
Additionally, the synapses from the external population is not separated from the recurrent AMPA-synapses.
107
107
This model is slow to simulate when there are many neurons with NMDA-synapses, since each post-synaptic neuron simulates each pre-synaptic connection explicitly. The model :doc:`iaf_bw_2001 </models/iaf_bw_2001>` is an approximation to this model which is significantly faster.
108
108
109
+
See also [2]_, [3]_
110
+
109
111
Parameters
110
112
++++++++++
111
113
@@ -115,16 +117,16 @@ The following parameters can be set in the status dictionary.
0 commit comments