Package jmt.engine.dataAnalysis.sorting

Examples of jmt.engine.dataAnalysis.sorting.HeapSort


  public QuantileDataAnalyzer(double alfa, double precision, int maxData, double[] quantile) {
    super(alfa, precision, maxData);
    this.quantile = quantile;
    data = new DoubleArrayList(1024);
    data.add(0);
    sorter = new HeapSort();
  }
View Full Code Here

TOP

Related Classes of jmt.engine.dataAnalysis.sorting.HeapSort

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.