vectorCount++;
// Initiallly we create a cluster for each vector
Cluster cluster = new Cluster(vector.length);
cluster.addVector(theVector);
cluster.setMean(theVector.clone());
clusters.add(cluster);
}
reader.close(); // close the input file
// (2) Loop to combine the two closest clusters into a bigger cluster