Uses of Interface
ca.nengo.model.Probeable

Packages that use Probeable
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.impl   
ca.nengo.sim   
ca.nengo.sim.impl   
ca.nengo.util   
ca.nengo.util.impl   
 

Uses of Probeable in ca.nengo.model
 

Subinterfaces of Probeable in ca.nengo.model
 interface Network
          A neural circuit, consisting of Nodes such as Ensembles and ExternalInputs.
 

Methods in ca.nengo.model with parameters of type Probeable
 void Network.exposeState(Probeable probeable, java.lang.String stateName, java.lang.String name)
          Declares the given Probeable state as being available for Probing from outside this Network.
 

Uses of Probeable in ca.nengo.model.impl
 

Classes in ca.nengo.model.impl that implement Probeable
 class AbstractEnsemble
          Abstract class that can be used as a basis for Ensemble implementations.
 class EnsembleImpl
          Default implementation of Ensemble.
 class FunctionInput
           
 class NetworkImpl
          Default implementation of Network.
 class PlasticEnsembleImpl
          An extension of the default ensemble; connection weights can be modified by a plasticity rule.
 

Methods in ca.nengo.model.impl with parameters of type Probeable
 void NetworkImpl.exposeState(Probeable probeable, java.lang.String stateName, java.lang.String name)
           
 

Constructors in ca.nengo.model.impl with parameters of type Probeable
ProbeableOrigin(Node node, Probeable probeable, java.lang.String state, int dimension, java.lang.String name)
           
 

Uses of Probeable in ca.nengo.model.muscle
 

Subinterfaces of Probeable in ca.nengo.model.muscle
 interface LinkSegmentModel
          TODO: javadocs
 interface SkeletalMuscle
          A model of a skeletal muscle or muscle group.
 

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

Classes in ca.nengo.model.muscle.impl that implement Probeable
 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 Probeable in ca.nengo.model.nef
 

Subinterfaces of Probeable 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.
 

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

Classes in ca.nengo.model.nef.impl that implement Probeable
 class BiasTermination
           
 class DecodableEnsembleImpl
          Default implementation of DecodableEnsemble.
 class DecodedTermination
          A Termination of decoded state vectors onto an NEFEnsemble.
 class NEFEnsembleImpl
          Default implementation of NEFEnsemble.
 

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

Classes in ca.nengo.model.neuron.impl that implement Probeable
 class ALIFSpikeGenerator
          An adapting leaky-integrate-and-fire model of spike generation.
 class DynamicalSystemSpikeGenerator
          A SpikeGenerator for which spiking dynamics are expressed in terms of a DynamicalSystem.
 class ExpandableSpikingNeuron
          A SpikingNeuron with an ExpandableSynapticIntegrator.
 class HodgkinHuxleySpikeGenerator
          A SpikeGenerator based on the Hodgkin-Huxley model.
 class IzhikevichSpikeGenerator
          From Izhikevich, 2003, the model is:
v' = 0.04v*v + 5v + 140 - u + I
u' = a(bv - u)
 class LIFSpikeGenerator
          A leaky-integrate-and-fire model of spike generation.
 class SpikingNeuron
          A neuron model composed of a SynapticIntegrator and a SpikeGenerator.
 

Uses of Probeable in ca.nengo.sim
 

Methods in ca.nengo.sim with parameters of type Probeable
 Probe Simulator.addProbe(java.lang.String ensembleName, Probeable target, java.lang.String state, boolean record)
           
 

Uses of Probeable in ca.nengo.sim.impl
 

Methods in ca.nengo.sim.impl with parameters of type Probeable
 Probe LocalSimulator.addProbe(java.lang.String ensembleName, Probeable target, java.lang.String state, boolean record)
           
 

Uses of Probeable in ca.nengo.util
 

Methods in ca.nengo.util that return Probeable
 Probeable Probe.getTarget()
           
 

Methods in ca.nengo.util with parameters of type Probeable
 void Probe.connect(Probeable target, java.lang.String stateName, boolean record)
           
 void Probe.connect(java.lang.String ensembleName, Probeable target, java.lang.String stateName, boolean record)
           
 

Uses of Probeable in ca.nengo.util.impl
 

Methods in ca.nengo.util.impl that return Probeable
 Probeable ProbeImpl.getTarget()
           
 

Methods in ca.nengo.util.impl with parameters of type Probeable
 void ProbeImpl.connect(Probeable target, java.lang.String stateName, boolean record)
           
 void ProbeImpl.connect(java.lang.String ensembleName, Probeable target, java.lang.String stateName, boolean record)