random entry selection from a matrix
이전 댓글 표시
how can I select any element randomly from a 1 x n matrix?
답변 (1개)
Doug Hull
2012년 7월 23일
0 개 추천
v = [1:10]
vi = randi(numel(v));
choice = v(vi)
댓글 수: 1
Walter Roberson
2012년 7월 23일
Doug, you missed your chance to say
choice = v(randperm(numel(v),1));
카테고리
도움말 센터 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!