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

Packages that use MatrixOutputListener
mosaic.sim.neuron.netoutputs   
 

Uses of MatrixOutputListener in mosaic.sim.neuron.netoutputs
 

Classes in mosaic.sim.neuron.netoutputs that implement MatrixOutputListener
 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 MatrixOutputListener
protected  MatrixOutputListener OutputFilter.nextMatrixListener
          The object to which the filtered matrix events will be forwarded.
 

Constructors in mosaic.sim.neuron.netoutputs with parameters of type MatrixOutputListener
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.