I have a matrix of size 64500x17. It represents detected texton features that I have to use to find 5 centroids for kmeans.
64500x17
kmeans
What I need is:
To take the first submatrix use colon notation:
A(1:12900,:)
then
A(12901:12900*2,:)
and so on.