calculate centroid after kmeans
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi,
Is it possible to retrospecively compute the centroids from the membership indices and the data after running kmeans?
Thanks!
Hans
0 Kommentare
Antworten (1)
Image Analyst
am 1 Mär. 2020
Why not simply use the centroid locations that kmeans returns to you? Did you know that kmean() returns those if you ask for (accept) two return values
[indexes, centroids] = kmeans(data, k);
2 Kommentare
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!