how to find possible combinations
    3 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
    Postit123
 am 6 Nov. 2020
  
    
    
    
    
    Kommentiert: Postit123
 am 6 Nov. 2020
            Hello
There's a 32X10 matrix dataset and I want to need all possible 4X10 data combinations.
Plus the data of each row remain same through the combination.
Do you have any idea for this?
Thanks you.
1 Kommentar
Akzeptierte Antwort
  Bruno Luong
      
      
 am 6 Nov. 2020
        
      Bearbeitet: Bruno Luong
      
      
 am 6 Nov. 2020
  
      % Test data
A=rand(32,10);
[m,n]=size(A);
I=nchoosek(1:m,4).';
% Each slice B(:,:,k) is a 4x10 (without-replacement) combination
B=permute(reshape(A(I,:),4,[],n),[1 3 2]);
Weitere Antworten (0)
Siehe auch
Kategorien
				Mehr zu Deep Learning Toolbox finden Sie in Help Center und File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!