How to create non-repetitive random integers
34 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Mohammad Monfared
le 23 Avr 2012
Commenté : Dmitry Kaplan
le 10 Août 2021
Hi,
As the title suggests I want to create non-repetitive random integers but don't know how to... say 70 integers ranging from 1 to 100. is there a straight way to do this?
thanks,
0 commentaires
Réponse acceptée
Grzegorz Knor
le 23 Avr 2012
Try this code:
N = 100;
x = randperm(N);
x = x(1:70)
2 commentaires
Dmitry Kaplan
le 10 Août 2021
Another possibility (perhaps a little faster)
[~,idx]=sort(rand(100,1));
idx(1:70)
Plus de réponses (2)
Voir également
Catégories
En savoir plus sur Logical dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!