How to select element from vector

조회 수: 98 (최근 30일)
Marat Zhe
Marat Zhe 2018년 6월 14일
댓글: Marat Zhe 2018년 6월 14일
__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!!

채택된 답변

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

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Audio I/O and Waveform Generation에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by