Package ca.nengo.model.nef

Examples of ca.nengo.model.nef.NEFNode.run()


      }

      for (int i = 0; i < result.length; i++) {
        node.setRadialInput(getRadialInput(evalPoints[i], nodeIndex));

        node.run(0f, 0f);

        RealOutput output = (RealOutput) node.getOrigin(origin).getValues();
        result[i] = output.getValues()[0];
      }
View Full Code Here


            node.setRadialInput(vals[t][nodeIndex]);
          else
            node.setRadialInput(getRadialInput(vals[t], nodeIndex));
           
 
          node.run(times[t], times[t]+dt);
 
          RealOutput output = (RealOutput) node.getOrigin(origin).getValues();
          result[i][t] = output.getValues()[0];
        }
      }
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.