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.
我有一个大型数据集,我想在 matlab 中使用 kmeans 算法将其分成两个集群。我的问题是这两个集群应该包含数据集中存在的数据。我该如何在 matlab 中做到这一点?
For eg: 1 2 3 4 5 6 6 3 5 1 1 2
....在输出中我应该得到这种格式:
cluster1: ... 1 2 3 1 1 2 cluster 2 4 5 6 6 3 5
idx=kmeans(dataset,k)
//dataset-kmeans 的数据集 //k=簇数然后知道分配到簇中的内容试试这个
cluster1data=dataset(idx==1,:)