Uses of Interface
mosaic.sim.neuron.netoutputs.VectorOutputListener

Packages that use VectorOutputListener
mosaic.sim.neuron.netoutputs   
 

Uses of VectorOutputListener in mosaic.sim.neuron.netoutputs
 

Classes in mosaic.sim.neuron.netoutputs that implement VectorOutputListener
 class ImageOutput
          This class receives vector or matrix output events from some spike decoder and transforms the values into an image, which is immediately saved in the file given to the constructor.
 class OutputFilter
          This class is a decorator for output listeners, enabling the filtering of output events: - first of all, it can pass only the first event and filter out all subsequent ones - secondly, events can be forwarded when the have reached an equilibrium, i.e. they do not change anymore within a given error range The constructor intializes the filter.
 

Fields in mosaic.sim.neuron.netoutputs declared as VectorOutputListener
protected  VectorOutputListener OutputFilter.nextVectorListener
          The object to which the filtered vector events will be forwarded.
 

Methods in mosaic.sim.neuron.netoutputs with parameters of type VectorOutputListener
 void TemporalCodedOutput.addVectorOutputListener(VectorOutputListener l)
          Adds an output event listener.
 boolean TemporalCodedOutput.removeOutputEventListener(VectorOutputListener l)
          Removes an output event listener.
 

Constructors in mosaic.sim.neuron.netoutputs with parameters of type VectorOutputListener
OutputFilter(VectorOutputListener nextVectorListener, MatrixOutputListener nextMatrixListener, boolean forwardMultipleEvents, boolean waitForEquilibrium, double maxSquareError)
          Constructs an OuptutFilter object and initializes the mamber variables according to the given parameters.