ca.nengo.model.plasticity.impl
Class ErrorLearningFunction

java.lang.Object
  extended by ca.nengo.math.impl.AbstractFunction
      extended by ca.nengo.model.plasticity.impl.AbstractRealLearningFunction
          extended by ca.nengo.model.plasticity.impl.ErrorLearningFunction
All Implemented Interfaces:
Function, java.io.Serializable, java.lang.Cloneable

public class ErrorLearningFunction
extends AbstractRealLearningFunction

A learning function that uses information from the ensemble to modulate the rate of synaptic change.

Author:
Trevor Bekolay
See Also:
Serialized Form

Field Summary
 
Fields inherited from class ca.nengo.math.impl.AbstractFunction
DIMENSION_PROPERTY
 
Constructor Summary
ErrorLearningFunction(float[] gain, float[][] encoders)
          Requires information from the post population to modulate learning.
 
Method Summary
 ErrorLearningFunction clone()
           
 
Methods inherited from class ca.nengo.model.plasticity.impl.AbstractRealLearningFunction
map
 
Methods inherited from class ca.nengo.math.impl.AbstractFunction
getDimension, multiMap
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ErrorLearningFunction

public ErrorLearningFunction(float[] gain,
                             float[][] encoders)
Requires information from the post population to modulate learning.

Parameters:
gain - Gain (scale) of the neurons in the post population
encoders - Encoders (phi tilde) of the neurons in the post population
Method Detail

clone

public ErrorLearningFunction clone()
                            throws java.lang.CloneNotSupportedException
Specified by:
clone in interface Function
Overrides:
clone in class AbstractRealLearningFunction
Throws:
java.lang.CloneNotSupportedException
See Also:
Object.clone()