how to cluster binary matrix in matlab ?
Show older comments
let
A=[1 0 0 0 0 0 0 1; 1 1 1 1 1 1 0 1; 0 0 0 0 0 0 1 1; 1 1 1 1 1 1 0 1; 0 0 0 0 0 0 1 1]
how to cluster this matrix A?
Answers (1)
Walter Roberson
on 30 May 2016
1 vote
Under at least two reasonable definitions of "cluster", all of the values that are 1 are in one cluster and all of the values that are 0 are in another cluster. The most obvious "reasonable definition" there involves value, but it also happens that if you use 8-connectivity then every 1 value is "connected" to every other 1 value through a chain.
My speculation is that what you want is bwlabel() with 4 connectivity.
5 Comments
Image Analyst
on 30 May 2016
That's my guess too.
[labeledImage, numberOfRegions] = bwlabel(A);
kumud alok
on 31 May 2016
Walter Roberson
on 31 May 2016
[clusters, ~, clusteridx] = unique(A,'rows');
kumud alok
on 1 Jun 2016
kumud alok
on 1 Jun 2016
Categories
Find more on Matrix Indexing in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!