MultiMap<Double,Integer> entropyToIndex =
new BoundedSortedMultiMap<Double,Integer>(
columns, false, true, true);
// Compute the entropy of each row and column.
EntropyStats stats = MatrixEntropy.entropy(cooccurrenceMatrix);
// Add the entropy values for each column. Since the rows will be
// concatenated as columns, they represent currently non-existing
// columns beyond the number of words.
for (int col = 0; col < words; ++col)