Package ca.nengo.model.nef.impl

Examples of ca.nengo.model.nef.impl.DecodedOrigin.run()


//          ((NEFNode) nodes[j]).setRadialInput(x[i]*encoders[j][0]);
          ((NEFNode) nodes[j]).setRadialInput(getRadialInput(ensemble, j, x[i]));
         
          nodes[j].run(0f, 0f);   
        }
        origin.run(null, 0f, 1f);
        actualOutput[i] = ((RealOutput) origin.getValues()).getValues();
       
        ensemble.setMode(SimulationMode.DIRECT);
        float[] state = new float[ensemble.getDimension()];
        state[0] = x[i];
View Full Code Here


        actualOutput[i] = ((RealOutput) origin.getValues()).getValues();
       
        ensemble.setMode(SimulationMode.DIRECT);
        float[] state = new float[ensemble.getDimension()];
        state[0] = x[i];
        origin.run(state, 0f, 1f);
        idealOutput[i] = ((RealOutput) origin.getValues()).getValues();
      }
      ensemble.setMode(mode);
     
      //one plot per output dimension ...
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.