Center of mass or clusters

조회 수: 3 (최근 30일)
steve Brian
steve Brian 2020년 4월 11일
답변: Image Analyst 2020년 4월 11일
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?

답변 (1개)

Image Analyst
Image Analyst 2020년 4월 11일
It's returned by the kmeans() function as the second output argument:
[indexes, clusterCentroids] = kmeans(data, numberOfClusters);

Community Treasure Hunt

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

Start Hunting!

Translated by