Examples of runClusterer()


Examples of edu.uga.cs.fluxbuster.clustering.hierarchicalclustering.HierarchicalClustering.runClusterer()

      }
      HierarchicalClustering hc = new HierarchicalClustering(linkage);
      if(log.isInfoEnabled()){
        log.info("Running Clusterer.");
      }
      hc.runClusterer(distMatrix, maxCutHeight);
      if(log.isInfoEnabled()){
        log.info("Clustering Completed.");
      }
      Dendrogram dgram = hc.getDendrogram();
      if(log.isInfoEnabled()){
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.