Package ca.nengo.math.impl

Examples of ca.nengo.math.impl.TimeSeriesFunction


    float [][]evalPoints = new float[t1-t0][d];

    for(int i=0;i<d;i++)
    {
      evalPointsFunction[i] = new TimeSeriesFunction(state.getData(),i);

      for(k=0;k<t1-t0;k++)
      {
        evalPoints[k][i] = evalPointsFunction[i].map(new float[]{time[k+t0]});
        for(int j=0;j<values[0].length;j++)
View Full Code Here

TOP

Related Classes of ca.nengo.math.impl.TimeSeriesFunction

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.