To pick a number randomly
조회 수: 1 (최근 30일)
이전 댓글 표시
Can some one help in picking a number from a matrix for example i have matrix of the form A=[1 2 3 4 5; 6 6 7 5 8 ; 12 4 5 6 9] and i require to pick only one element randomly from the matrix but should not be the same element every time.
댓글 수: 0
채택된 답변
Andrei Bobrov
2012년 9월 11일
편집: Andrei Bobrov
2012년 9월 11일
try this is code
A=[1 2 3 4 5; 6 6 7 5 8 ; 12 4 5 6 9];
a = unique(A);
b = a(histc(A(:),a) < 2);
idx = randperm(numel(b));
out = b(idx(1));
추가 답변 (1개)
Rene
2012년 9월 11일
편집: Rene
2012년 9월 11일
The answer of andrei does not give a truly random number since he uses the unique command.
This will:
A=[1 2 3 4 5; 6 6 7 5 8 ; 12 4 5 6 9];
B = round((length(A(:))-1)*rand+1);
A(B)
ps. as far as rand returns a truly random number
댓글 수: 2
Andrei Bobrov
2012년 9월 12일
편집: Andrei Bobrov
2012년 9월 12일
A2 = reshape(A',[],1);
out = A2(randperm(numel(A),1));
참고 항목
카테고리
Help Center 및 File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!