Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
从文档中没有找到每个集群半径的选项。最接近我想要的是命令:
[IDX,C,sumd] = kmeans(X,k)
它为每个集群返回sumd集群点到集群质心之间的距离总和。
sumd
是否可以专门找到每个集群的半径?
假设您将半径(下界)定义为任何点到它所在的集群中心的最大距离。
查看文档时,可以使用第四个输出参数,因此函数调用可以是:
[IDX,C,sumd, D] = kmeans(X,k);
现在您可以看到每个集群内的最大距离是多少,并且您拥有每个半径的最小值。