Center of mass or clusters
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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?
0 commentaires
Réponses (1)
Image Analyst
le 11 Avr 2020
It's returned by the kmeans() function as the second output argument:
[indexes, clusterCentroids] = kmeans(data, numberOfClusters);
0 commentaires
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!