Package ca.nengo.dynamics.impl

Examples of ca.nengo.dynamics.impl.EulerIntegrator


    myNodes = nodes;
    myNodeOrigin = nodeOrigin;
    myFunctions = functions;
    myDecoders = decoders;
    myMode = SimulationMode.DEFAULT;
    myIntegrator = new EulerIntegrator(.001f);

    reset(false);
  }
View Full Code Here


    myFunctions = new FixedSignalFunction[targetSignal.getDimension()];
    for(int i=0; i < targetSignal.getDimension(); i++) //these are only used in direct mode
      myFunctions[i] = new FixedSignalFunction(targetSignal.getValues(), i);
    myDecoders = findDecoders(nodes, MU.transpose(targetSignal.getValues()), approximator);
    myMode = SimulationMode.DEFAULT;
    myIntegrator = new EulerIntegrator(.001f);
   
    reset(false);
  }
View Full Code Here

TOP

Related Classes of ca.nengo.dynamics.impl.EulerIntegrator

Copyright © 2018 www.massapicom. 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.