K- Means algorithm

dedalo picture dedalo · Jun 28, 2009 · Viewed 33.5k times · Source

I'm trying to program a k-means algorithm in Java. I have calculated a number of arrays, each of them containing a number of coefficients. I need to use a k-means algorithm in order to group all this data. Do you know any implementation of this algorithm?

Thanks

Answer

jtb picture jtb · Jun 28, 2009

I haven't studied the code myself, but there's a multithreaded K-means implementation given in this JavaWorld article that looks pretty instructive.