random permutation with repetition for > 2000 elements
    2 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
    Claudia
 am 1 Dez. 2013
  
    
    
    
    
    Bearbeitet: Claudia
 am 1 Dez. 2013
            Hi
randperm is for permutations WITHOUT repetition. I would need it WITH repetition. I could calculate all permutations (I found some scripts), but I need it for vectors with more than 2000 elements. Any ideas?
Thanks so much
Claudia
0 Kommentare
Akzeptierte Antwort
  Image Analyst
      
      
 am 1 Dez. 2013
        Try this
randomNumbers = randi(highestNumber, rows, columns);
plug in whatever values you want, for example:
randomNumbers = randi(9, 1, 2000); % 2000 numbers in the range 1-9.
1 Kommentar
Weitere Antworten (0)
Siehe auch
Kategorien
				Mehr zu Random Number Generation 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!