How to select element from vector

99 Ansichten (letzte 30 Tage)
Marat Zhe
Marat Zhe am 14 Jun. 2018
Kommentiert: Marat Zhe am 14 Jun. 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!!

Akzeptierte Antwort

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

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Audio I/O and Waveform Generation finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by