Each element/entity of the simple model we will implement, will be simulated by a corresponding object in CSIM . The following table shows the correspondence between the elements of the model and the class of the object used to simulate the element
element of model | class of CSIM object |
---|---|
input spike train | SpikingInputNeuron |
dynamic synapse | DynamicSpikingSynapse |
LIF neuron | LifNeuron |
» i=csim('create','SpikingInputNeuron');
» s=csim('create','DynamicSpikingSynapse');
» n=csim('create','LifNeuron');