Uses of Interface
org.ojalgo.data.cluster.ClusteringAlgorithm
-
Packages that use ClusteringAlgorithm Package Description org.ojalgo.data.cluster -
-
Uses of ClusteringAlgorithm in org.ojalgo.data.cluster
Classes in org.ojalgo.data.cluster that implement ClusteringAlgorithm Modifier and Type Class Description class
GeneralisedKMeans<T>
Contains the outline of the k-means algorithm, but designed for customisation.class
GreedyClustering<T>
Greedy clustering algorithm.(package private) class
RandomClustering<T>
Randomly assigns each item to one of k clusters.Methods in org.ojalgo.data.cluster that return ClusteringAlgorithm Modifier and Type Method Description static ClusteringAlgorithm<Point>
Point. newGreedyClusterer(double distanceThreshold)
Greedy algorithm.static ClusteringAlgorithm<Point>
Point. newKMeansClusterer(int k)
Standard k-means clustering
-