I have 2D matrix and I want to cluster it to three groups of data
3 views (last 30 days)
Show older comments
I have 2D matrix and I want to cluster it to three groups of data based on the range of the data, what clustering method could help me ?
0 Comments
Answers (1)
KSSV
on 22 Apr 2017
A = rand(100) ;
set1 = A(A>0 & A<=0.4) ;
set2 = A(A>0.4 & A<=0.8) ;
set3 = A(A>0.8 & A<=1) ;
See Also
Categories
Find more on Cluster Analysis and Anomaly Detection in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!