Creating Objects

Creating Objects

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
Hence, for the simulation to run one must create objects of the given class:

    » i=csim('create','SpikingInputNeuron'); 

    » s=csim('create','DynamicSpikingSynapse');
    » n=csim('create','LifNeuron');

 
(C) 2003, Thomas Natschläger last modified 07/10/2006