How to choose a random value from an array?

조회 수: 5 (최근 30일)
ozan aksu
ozan aksu 2018년 6월 21일
댓글: ozan aksu 2018년 6월 23일
I have a matrix
A= [2846 2402 2374 209
54 46 45 4
35 70 35 35
2 2 2 2
2 4 10 12]
I want to select a random element among the values which are lower than 50 from the third row, in other words, one of the 35s. I also want to obtain the column number of the value that i have selected. Couldn't find a decent way to do it.

채택된 답변

Stephen23
Stephen23 2018년 6월 21일
편집: Stephen23 2018년 6월 21일
>> X = A(3,:)<50; % columns with <50 in third row
>> V = find(X);
>> C = V(randi(nnz(X))) % random column
C = 3
>> A(3,C) % value from that column
ans = 35
>> A(:,C) % the whole column
ans =
2374
45
35
2
10
  댓글 수: 1
ozan aksu
ozan aksu 2018년 6월 23일
i was missing "find" and "nnz" commands. thank you for your help.

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

추가 답변 (1개)

Alfonso
Alfonso 2018년 6월 21일

카테고리

Help CenterFile Exchange에서 Random Number Generation에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by