Center of mass or clusters

3 visualizaciones (últimos 30 días)
steve Brian
steve Brian el 11 de Abr. de 2020
Respondida: Image Analyst el 11 de Abr. de 2020
Hi there!
If I have an NxM matrix and a number of clusters, how do I return a centroids point vector representing the averages (centers of mass) of the clusters?

Respuestas (1)

Image Analyst
Image Analyst el 11 de Abr. de 2020
It's returned by the kmeans() function as the second output argument:
[indexes, clusterCentroids] = kmeans(data, numberOfClusters);

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by