Uses of Interface
ca.nengo.model.SimulationMode.ModeConfigurable

Packages that use SimulationMode.ModeConfigurable
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   
 

Uses of SimulationMode.ModeConfigurable in ca.nengo.model
 

Subinterfaces of SimulationMode.ModeConfigurable 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 SimulationMode.ModeConfigurable in ca.nengo.model.impl
 

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

Subinterfaces of SimulationMode.ModeConfigurable 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 SimulationMode.ModeConfigurable in ca.nengo.model.muscle.impl
 

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

Subinterfaces of SimulationMode.ModeConfigurable 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 SimulationMode.ModeConfigurable in ca.nengo.model.nef.impl
 

Classes in ca.nengo.model.nef.impl that implement SimulationMode.ModeConfigurable
 class BiasOrigin
          Part of a projection in which each of the Nodes making up an Ensemble is a source of only excitatory or inhibitory connections.
 class DecodableEnsembleImpl
          Default implementation of DecodableEnsemble.
 class DecodedOrigin
          An Origin of functions of the state variables of an NEFEnsemble.
 class NEFEnsembleImpl
          Default implementation of NEFEnsemble.
 

Uses of SimulationMode.ModeConfigurable in ca.nengo.model.neuron
 

Subinterfaces of SimulationMode.ModeConfigurable in ca.nengo.model.neuron
 interface Neuron
          A model of a single neuron cell.
 interface SpikeGenerator
          Spike generation model, ie a component of a neuron model that receives driving current and generates spikes.
 

Uses of SimulationMode.ModeConfigurable in ca.nengo.model.neuron.impl
 

Classes in ca.nengo.model.neuron.impl that implement SimulationMode.ModeConfigurable
 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 PoissonSpikeGenerator
          A phenomenological SpikeGenerator that produces spikes according to a Poisson process with a rate that varies as a function of current.
 class SpikingNeuron
          A neuron model composed of a SynapticIntegrator and a SpikeGenerator.