NeuroLab
|
class implementing a simple integrate-and-fire neuron More...
Public Member Functions | |
virtual int | addStimulus (Synapse *synapse)=0 |
Add a synapse. More... | |
virtual void | removeStimulus (int n)=0 |
remove a stimulus More... | |
Protected Member Functions | |
Neuron (string name, string type) | |
Construct. More... | |
class implementing a simple integrate-and-fire neuron
This class implements functions common to all neurons - adding and removing of stimuli. A neuron is implemented as differential equation and inherits from DifferentialEquation. The neuron can be used with conductances, synapses or simple stochastic input. This class is meant as base class for neurons; the constructor is protected.
|
inlineprotected |
Construct.
This only calls the DifferentialEquation constructor.
|
pure virtual |