How to select element from vector

97 visualizaciones (últimos 30 días)
Marat Zhe
Marat Zhe el 14 de Jun. de 2018
Comentada: Marat Zhe el 14 de Jun. de 2018
__Hi guys. I've got a vector (for exhample) A=[5,4,7,9,11,2,16] (generally vector may be bigger).
1. I want to take random element a1 from it (now vector A have size 1*7).
2. Then i want to take one more random element a2 from A with out of a1 !!
etc.
__So i want to take all elements from vector A.
__Can you give me a clue, how to do it in a simplest way.
__Thanks in advance!!

Respuesta aceptada

KSSV
KSSV el 14 de Jun. de 2018
A=[5,4,7,9,11,2,16] ;
idx = randperm(length(A)) ;
iwant = A(idx)
  3 comentarios
KSSV
KSSV el 14 de Jun. de 2018
iwant is randomly arranged from A. Run a loop on iwant and pick.
Marat Zhe
Marat Zhe el 14 de Jun. de 2018
Thank you very much KSSV. I've finally got what you meant.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Audio I/O and Waveform Generation en Help Center y File Exchange.

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by