Shuffling a vector for n times to generate a new vector
    4 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
    Shoaibur Rahman
      
 il 22 Lug 2015
  
    
    
    
    
    Risposto: Azzi Abdelmalek
      
      
 il 22 Lug 2015
            A is a vector. I want to shuffle its elements for n times to generate a new vector. For example:
A = [3 5 1];
out = [Shuffle(A) Shuffle(A) Shuffle(A)] % n = 3, but may be a large value
out =
     1     5     3     5     1     3     5     3     1
For a large value of n, I can do it using a loop. But, I was wondering if there was any easy without looping. Thanks.
0 Commenti
Risposta accettata
  Azzi Abdelmalek
      
      
 il 22 Lug 2015
        A = [3 5 1]
n=10
a=perms(1:3)'
m=size(a,1)
k=randi(m,n,1)
s=a(:,k)
out=A(s(:))
0 Commenti
Più risposte (0)
Vedere anche
Categorie
				Scopri di più su Loops and Conditional Statements 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!

