Uses of Interface
ca.nengo.util.VisiblyMutable

Packages that use VisiblyMutable
ca.nengo.model   
ca.nengo.model.impl   
ca.nengo.model.muscle   
ca.nengo.model.muscle.impl   
ca.nengo.model.nef   
ca.nengo.model.nef.impl   
ca.nengo.model.neuron   
ca.nengo.model.neuron.impl   
ca.nengo.sim   
ca.nengo.sim.impl   
ca.nengo.util   
 

Uses of VisiblyMutable in ca.nengo.model
 

Subinterfaces of VisiblyMutable in ca.nengo.model
 interface Ensemble
           A group of Nodes with largely overlapping inputs and outputs.
 interface ExpandableNode
          A Node to which Terminations can be added after construction, in a standard manner.
 interface Network
          A neural circuit, consisting of Nodes such as Ensembles and ExternalInputs.
 interface Node
          A part of a Network that can be run independently (eg a Neuron).
 interface PlasticEnsemble
           An extension of the default ensemble in which connection weights can be modified by a plasticity rule.
 

Uses of VisiblyMutable in ca.nengo.model.impl
 

Classes in ca.nengo.model.impl that implement VisiblyMutable
 class AbstractEnsemble
          Abstract class that can be used as a basis for Ensemble implementations.
 class AbstractNode
          A base implementation of Node.
 class EnsembleImpl
          Default implementation of Ensemble.
 class EnsembleImplTest.MockExpandableNode
           
 class FunctionInput
           
 class MockNode
          A Cloneable Node for testing copy&paste / drag&drop.
 class NetworkImpl
          Default implementation of Network.
 class PassthroughNode
          A Node that passes values through unaltered.
 class PlasticEnsembleImpl
          An extension of the default ensemble; connection weights can be modified by a plasticity rule.
 

Uses of VisiblyMutable in ca.nengo.model.muscle
 

Subinterfaces of VisiblyMutable in ca.nengo.model.muscle
 interface GolgiTendonOrgan
          A model of a golgi tendon organ receptor.
 interface LinkSegmentModel
          TODO: javadocs
 interface MuscleSpindle
          A model of a muscle spindle receptor.
 interface SkeletalMuscle
          A model of a skeletal muscle or muscle group.
 

Uses of VisiblyMutable in ca.nengo.model.muscle.impl
 

Classes in ca.nengo.model.muscle.impl that implement VisiblyMutable
 class CriticallyDampedMuscle
          A simple, phenomenological muscle model in which activation-force dynamics are modelled with a linear 2nd-order low-pass filter (see e.g.
 class HillMuscle
          A Hill-type muscle model.
 class LinkSegmentModelImpl
          Default implementation of LinkSegmentModel.
 class SkeletalMuscleImpl
          Basic SkeletalMuscle implementation with unspecified activation-force dynamics.
 

Uses of VisiblyMutable in ca.nengo.model.nef
 

Subinterfaces of VisiblyMutable in ca.nengo.model.nef
 interface DecodableEnsemble
          An Ensemble that produces output signals that mean something when taken together.
 interface NEFEnsemble
          A group of Nodes that represent a scalar, vector, or function, as characterized in Eliasmith & Anderson's Neural Engineering Framework.
 interface NEFNode
          A Node with a distinguished Termination that corresponds to a net effect of input.
 

Uses of VisiblyMutable in ca.nengo.model.nef.impl
 

Classes in ca.nengo.model.nef.impl that implement VisiblyMutable
 class DecodableEnsembleImpl
          Default implementation of DecodableEnsemble.
 class NEFEnsembleImpl
          Default implementation of NEFEnsemble.
 

Uses of VisiblyMutable in ca.nengo.model.neuron
 

Subinterfaces of VisiblyMutable in ca.nengo.model.neuron
 interface Neuron
          A model of a single neuron cell.
 

Uses of VisiblyMutable in ca.nengo.model.neuron.impl
 

Classes in ca.nengo.model.neuron.impl that implement VisiblyMutable
 class ExpandableSpikingNeuron
          A SpikingNeuron with an ExpandableSynapticIntegrator.
 class SpikingNeuron
          A neuron model composed of a SynapticIntegrator and a SpikeGenerator.
 

Uses of VisiblyMutable in ca.nengo.sim
 

Subinterfaces of VisiblyMutable in ca.nengo.sim
 interface Simulator
          Runs simulations of a Network.
 

Uses of VisiblyMutable in ca.nengo.sim.impl
 

Classes in ca.nengo.sim.impl that implement VisiblyMutable
 class LocalSimulator
          A Simulator that runs locally (ie in the Java Virtual Machine in which it is called).
 

Uses of VisiblyMutable in ca.nengo.util
 

Methods in ca.nengo.util that return VisiblyMutable
 VisiblyMutable VisiblyMutable.Event.getObject()
           
 

Methods in ca.nengo.util with parameters of type VisiblyMutable
static void VisiblyMutableUtils.changed(VisiblyMutable vm, java.util.List<VisiblyMutable.Listener> listeners)
          Notifies listeners of a change to the given VisiblyMutable object.
static void VisiblyMutableUtils.nameChanged(VisiblyMutable vm, java.lang.String oldName, java.lang.String newName, java.util.List<VisiblyMutable.Listener> listeners)