Examples of DelayedLinearExponentialTermination


Examples of ca.nengo.model.impl.DelayedLinearExponentialTermination

  public Termination addTermination(String name, float[] weights, float tauPSC, float delay, boolean modulatory) throws StructuralException {
    if (myTerminations.containsKey(name)) {
      throw new StructuralException("This SynapticIntegrator already has a Termination named " + name);
    }
   
    DelayedLinearExponentialTermination result = new DelayedLinearExponentialTermination(myNode, name,
        weights, tauPSC, (int)(delay/myMaxTimeStep));
    result.setModulatory(modulatory);
    myTerminations.put(name,  result);
   
    return result;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.