Package org.jamesii.core.model.variables

Examples of org.jamesii.core.model.variables.LongTrajectoryVariable


  @Override
  public double calcObjective(Configuration configuration,
      Map<String, BaseVariable<?>> response) {

    LongTrajectoryVariable trajectoryVar =
        (LongTrajectoryVariable) response.get(paramName);
    LongTrajectory trajectory = trajectoryVar.getValue();

    long[] data = trajectory.getData(); // new length - old length
    double[] times = trajectory.getTimes();

    // objective
View Full Code Here

TOP

Related Classes of org.jamesii.core.model.variables.LongTrajectoryVariable

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.