How can I assign two sets of values randomly among two other sets?
    4 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
I have two sets a and b, these sets of values to another two sets s1 and s2. I tried for randperm but i am getting errors. Thanks in advance.....
0 Commenti
Risposte (2)
  KSSV
      
      
 il 7 Ott 2016
        
      Modificato: KSSV
      
      
 il 7 Ott 2016
  
      Using randsample
% Create two sets 
a = rand(10,1) ;
b = rand(20,1) ; 
% Assign to s1, s2 randomly 
s1 = randsample(a,length(a)) ;
s2 = randsample(b,length(b)) ;
Using randperm
% Create two sets 
  a = rand(10,1) ;
  b = rand(20,1) ; 
  % Assign to s1, s2 randomly 
  s1 = a(randperm(length(a))) ;
  s2 =  b(randperm(length(b)))  ;
0 Commenti
Vedere anche
Categorie
				Scopri di più su ROC - AUC in Help Center e File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

