calculate centroid after kmeans
조회 수: 2 (최근 30일)
이전 댓글 표시
Hi,
Is it possible to retrospecively compute the centroids from the membership indices and the data after running kmeans?
Thanks!
Hans
댓글 수: 0
답변 (1개)
Image Analyst
2020년 3월 1일
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);
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!