Example usage for org.apache.commons.math3.ml.clustering Clusterable interface-usage

List of usage examples for org.apache.commons.math3.ml.clustering Clusterable interface-usage

Introduction

In this page you can find the example usage for org.apache.commons.math3.ml.clustering Clusterable interface-usage.

Usage

From source file org.rhwlab.dispim.datasource.Voxel.java

/**
 *
 * @author gevirl
 */
public class Voxel implements Clusterable {
    public Voxel(long[] v, int i, double adj) {

From source file wvec.WordVec.java

/**
 * Reads from a word2vec file and expands the
 * query with the k-NN set of terms...
    
 * @author dganguly
 */

From source file org.lpe.common.util.NumericPair.java

/**
 * Wrapps a pair of two numeric values.
 * 
 * @author Alexander Wert
 * 
 * @param <T>

From source file org.meresco.lucene.search.MerescoVector.java

class MerescoVector implements Clusterable {
    private OpenIntToDoubleHashMap entries;
    int docId;
    private int maxIndex;
    private ArrayRealVector point = null;

From source file com.hurence.logisland.botsearch.Trace.java

/**
 *
 *
 * fftFlows : In this step, we sample our trace like a binary signal by
 * assigning it to be 1 at each connection start, and 0 in-between connections.
 *