Uses of Interface
ca.nengo.dynamics.Integrator

Packages that use Integrator
ca.nengo.dynamics   
ca.nengo.dynamics.impl   
ca.nengo.model.impl   
ca.nengo.model.nef.impl   
ca.nengo.model.neuron.impl   
 

Uses of Integrator in ca.nengo.dynamics
 

Methods in ca.nengo.dynamics that return Integrator
 Integrator Integrator.clone()
           
 

Uses of Integrator in ca.nengo.dynamics.impl
 

Classes in ca.nengo.dynamics.impl that implement Integrator
 class EulerIntegrator
          Euler's method of numerical integration: x(t+h) ~ x(t) + h*x'(t) TODO: test TODO: should there be some means for aborting early (aside from exceptions, e.g.
 class RK45Integrator
          A variable-timestep Integrator, which uses the Dormand-Prince 4th and 5th-order Runge-Kutta formulae.
 

Methods in ca.nengo.dynamics.impl that return Integrator
 Integrator EulerIntegrator.clone()
           
 Integrator RK45Integrator.clone()
           
 

Uses of Integrator in ca.nengo.model.impl
 

Methods in ca.nengo.model.impl that return Integrator
 Integrator NoiseFactory.NoiseImplPDF.getIntegrator()
           
 

Methods in ca.nengo.model.impl with parameters of type Integrator
static Noise NoiseFactory.makeRandomNoise(float frequency, PDF pdf, DynamicalSystem dynamics, Integrator integrator)
           
 

Constructors in ca.nengo.model.impl with parameters of type Integrator
BasicTermination(Node node, DynamicalSystem dynamics, Integrator integrator, java.lang.String name)
           
NoiseFactory.NoiseImplPDF(float frequency, PDF pdf, DynamicalSystem dynamics, Integrator integrator)
           
 

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

Methods in ca.nengo.model.nef.impl that return Integrator
 Integrator NEFEnsembleImpl.getDirectModeIntegrator()
           
 

Methods in ca.nengo.model.nef.impl with parameters of type Integrator
 void NEFEnsembleImpl.setDirectModeIntegrator(Integrator integrator)
           
 

Constructors in ca.nengo.model.nef.impl with parameters of type Integrator
BiasTermination(Node node, java.lang.String name, java.lang.String baseName, LinearSystem dynamics, Integrator integrator, float[] biasEncoders, boolean interneurons)
           
DecodedTermination(Node node, java.lang.String name, float[][] transform, LinearSystem dynamics, Integrator integrator)
           
 

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

Methods in ca.nengo.model.neuron.impl that return Integrator
 Integrator DynamicalSystemSpikeGenerator.getIntegrator()
           
 

Methods in ca.nengo.model.neuron.impl with parameters of type Integrator
 void DynamicalSystemSpikeGenerator.setIntegrator(Integrator integrator)
           
 

Constructors in ca.nengo.model.neuron.impl with parameters of type Integrator
DynamicalSystemSpikeGenerator(DynamicalSystem dynamics, Integrator integrator, int voltageDim, float spikeThreshold, float minIntraSpikeTime)
           
DynamicalSystemSpikeGenerator(DynamicalSystem dynamics, Integrator integrator, int voltageDim, float spikeThreshold, float minIntraSpikeTime, float[] currentRange, float transientTime)
          Creates a SpikeGenerator that supports CONSTANT_RATE mode.