Skip to content

Latest commit

 

History

History
6 lines (4 loc) · 502 Bytes

README.md

File metadata and controls

6 lines (4 loc) · 502 Bytes

K-Means clustering in C++

This is a C++ implementation of the K-Means clustering algorithm.

k-means

k-means clustering is a method of vector quantization, originally from signal processing, that is popular for cluster analysis in data mining. k-means clustering aims to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. This results in a partitioning of the data space into Voronoi cells.