How to create non-repetitive random integers
34 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Mohammad Monfared
el 23 de Abr. de 2012
Comentada: Dmitry Kaplan
el 10 de Ag. de 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 comentarios
Respuesta aceptada
Grzegorz Knor
el 23 de Abr. de 2012
Try this code:
N = 100;
x = randperm(N);
x = x(1:70)
2 comentarios
Dmitry Kaplan
el 10 de Ag. de 2021
Another possibility (perhaps a little faster)
[~,idx]=sort(rand(100,1));
idx(1:70)
Más respuestas (2)
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!