how to cluster using matlab
2 ビュー (過去 30 日間)
古いコメントを表示
hi all. im completely new in clustering!would you please explain to me how i can cluster a 8191*300 matrix into 3 groups? thank you for your help
0 件のコメント
採用された回答
Sad Grad Student
2015 年 2 月 18 日
編集済み: Sad Grad Student
2015 年 2 月 18 日
Easiest to implement is kmeans clustering. Look it up!
Matrix = % your 8191x300 matrix
NumC = 3 % number of clusters
idx = kmeans(Matrix,NumC)
idx will give you a vector of size 8191 containing the indices of each cluster(1,2 or 3) the row belongs to.
0 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!