Package net.sourceforge.aprog.tools.MathTools

Examples of net.sourceforge.aprog.tools.MathTools.Statistics.addValue()


     
      int progress = 0;
     
      for (final Future<Double> task : tasks) {
        System.out.print((progress++) + "/" + tasks.size() + " \r");
        statistics.addValue(task.get());
      }
     
      System.out.println("testingEntryCount: " + statistics.getCount());
      System.out.println("accuracy:" + statistics.getMean());
    } finally {
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.