Nengo.ca

ca.nengo.model.neuron.impl
Enum IzhikevichSpikeGenerator.Preset

java.lang.Object
  extended by java.lang.Enum<IzhikevichSpikeGenerator.Preset>
      extended by ca.nengo.model.neuron.impl.IzhikevichSpikeGenerator.Preset
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<IzhikevichSpikeGenerator.Preset>
Enclosing class:
IzhikevichSpikeGenerator

public static enum IzhikevichSpikeGenerator.Preset
extends java.lang.Enum<IzhikevichSpikeGenerator.Preset>

Preset parameter values corresponding to different cell types.


Enum Constant Summary
CHATTERING
          Parameter set for "chattering" behaviour
CUSTOM
          Custom parameter set
DEFAULT
          Default parameter set
FAST_SPIKING
          Parameter set for fast spiking
INTRINSICALLY_BURSTING
          Parameter set for burst firing
REGULAR_SPIKING
          Parameter set for tonic firing
RESONATOR
          Parameter set for a resonator
 
Method Summary
 float getA()
           
 float getB()
           
 float getC()
           
 float getD()
           
static IzhikevichSpikeGenerator.Preset valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static IzhikevichSpikeGenerator.Preset[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

CUSTOM

public static final IzhikevichSpikeGenerator.Preset CUSTOM
Custom parameter set


DEFAULT

public static final IzhikevichSpikeGenerator.Preset DEFAULT
Default parameter set


REGULAR_SPIKING

public static final IzhikevichSpikeGenerator.Preset REGULAR_SPIKING
Parameter set for tonic firing


INTRINSICALLY_BURSTING

public static final IzhikevichSpikeGenerator.Preset INTRINSICALLY_BURSTING
Parameter set for burst firing


CHATTERING

public static final IzhikevichSpikeGenerator.Preset CHATTERING
Parameter set for "chattering" behaviour


FAST_SPIKING

public static final IzhikevichSpikeGenerator.Preset FAST_SPIKING
Parameter set for fast spiking


RESONATOR

public static final IzhikevichSpikeGenerator.Preset RESONATOR
Parameter set for a resonator

Method Detail

values

public static final IzhikevichSpikeGenerator.Preset[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(IzhikevichSpikeGenerator.Preset c : IzhikevichSpikeGenerator.Preset.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static IzhikevichSpikeGenerator.Preset valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name

getA

public float getA()
Returns:
Dynamics matrix

getB

public float getB()
Returns:
Input matrix

getC

public float getC()
Returns:
Output matrix

getD

public float getD()
Returns:
Passthrough matrix

Nengo.ca