Question about random generator values.
Mostrar comentarios más antiguos
if i input for example
B=randperm (43)
how can i show an array having 2 or 3 numbers only from the values of randperm(43)?
example:
A1 3 27 40
A2 30 25
A3 6 12 17
and so on..
Respuestas (1)
Image Analyst
el 30 de Sept. de 2012
A1 = B(1:3);
A2 = B(1:2);
etc.
2 comentarios
Portgas Ace
el 30 de Sept. de 2012
Walter Roberson
el 30 de Sept. de 2012
B(1:round(rand)+2)
Categorías
Más información sobre Cluster Analysis and Anomaly Detection en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!