how to split 6x4 double based on first columns values into three [2X4]?
    5 views (last 30 days)
  
       Show older comments
    
4 1 2 3
4 5 6 7
5 1 2 3
5 4 5 6 ====>> [4 1 2 3   [ 5 1 2 3     [6 1 2 3
5 4 5 6 
5 4 5 6               4 5 6 7]     5 4 5 6]   6 4 5 6]
6 1 2 3
6 4 5 6
0 Comments
Accepted Answer
  Matt J
      
      
 on 16 Dec 2022
        A=[4 1 2 3
4 5 6 7
5 1 2 3
5 4 5 6 
5 4 5 6
5 4 5 6 
6 1 2 3
6 4 5 6];
A=unique(A,'rows');
Acell=splitapply(@(x){x}, A,findgroups(A(:,1)));
Acell{:}
0 Comments
See Also
Categories
				Find more on Matrices and Arrays 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!