1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
.. currentmodule:: brian
.. index::
pair: neuron; model
pair: neuron; equations
pair: model; equations
pair: neuron; group
Neuron models and groups
========================
.. index::
single: equations
The :class:`Equations` object
-----------------------------
.. autoclass:: Equations
For information on integration methods, and the :class:`StateUpdater`
class, see :ref:`integration`.
The :class:`NeuronGroup` object
-------------------------------
.. autoclass:: NeuronGroup
.. index::
single: model
.. index:: reset
Resets
------
Reset objects are called each network update step to reset
specified state variables of neurons that have fired.
.. autoclass:: Reset
.. autoclass:: StringReset
.. index::
pair: variable; reset
.. autoclass:: VariableReset
.. index:: refractory
.. autoclass:: Refractoriness
.. autoclass:: SimpleCustomRefractoriness
.. autoclass:: CustomRefractoriness
.. autoclass:: FunReset
.. autoclass:: NoReset
.. index:: threshold
Thresholds
----------
A threshold mechanism checks which neurons have fired a
spike.
.. index::
pair: threshold; linear
.. autoclass:: Threshold
.. autoclass:: StringThreshold
.. index::
pair: threshold; variable
.. autoclass:: VariableThreshold
.. index::
pair: threshold; empirical
pair: threshold; hodgkin-huxley
.. autoclass:: EmpiricalThreshold
.. index::
single: threshold; functional
.. autoclass:: SimpleFunThreshold
.. autoclass:: FunThreshold
.. autoclass:: NoThreshold
|