Uses of Class
mosaic.sim.neuron.Synapse

Packages that use Synapse
mosaic.sim.neuron   
mosaic.sim.neuron.simulations   
 

Uses of Synapse in mosaic.sim.neuron
 

Subclasses of Synapse in mosaic.sim.neuron
 class ConstantPLSynapse
          This class represents a synapse using piecewiese linear functions, but with a constant shape for all synapse objects in the simulation.
 class PLSynapse
          This class represents synapses with piecewise linear response functions.
 

Fields in mosaic.sim.neuron declared as Synapse
protected  Synapse Neuron.masterSynapse
          This is a master copy of the synapses that will be used for connecting neurons with each other.
 

Methods in mosaic.sim.neuron that return Synapse
 Synapse[] Neuron.getInputSynapses()
          Returns the list of currently registerd input synapses.
 Synapse Neuron.getMasterSynapse()
          Returns the master synapse object used for creating new synapse objects on the fly in the method addInput().
 

Methods in mosaic.sim.neuron with parameters of type Synapse
 void Synapse.LearningMethod.changeParameters(Synapse sender)
           
 void Neuron.spikeEventFrom(Synapse sy)
          This method is called by the synapses from the inputs list whenever they receive a spike event from their sender object.
 void Neuron.setInputSynapses(Synapse[] synapses)
          Set the list of registered input synapses.
 void Neuron.addInputSynapse(Synapse synapse)
          Adds a single synapse object to the list of input synapses.
 boolean Neuron.removeInputSynapse(Synapse synapse)
          Removes a single synapse object from the list of input synapses.
 void Neuron.setMasterSynapse(Synapse master)
          Sets the master synapse object used for creating new synapse objects on the fly in the method addInput().
 

Uses of Synapse in mosaic.sim.neuron.simulations
 

Methods in mosaic.sim.neuron.simulations with parameters of type Synapse
 void SOMLearningMethod.changeParameters(Synapse sender)