フィルターのクリア

To pick a number randomly

2 ビュー (過去 30 日間)
PK
PK 2012 年 9 月 11 日
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.

採用された回答

Andrei Bobrov
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 件のコメント
PK
PK 2012 年 9 月 11 日
its working fine can u please elaborate the working of code

サインインしてコメントする。

その他の回答 (1 件)

Rene
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 件のコメント
PK
PK 2012 年 9 月 12 日
this works fine and any method to select the numbers accordingly from first row first element to third row fifth element one after the other continuously in the manner of 1 2 3 4 5 6 6 7 5 8 12 4 5 6 9
Andrei Bobrov
Andrei Bobrov 2012 年 9 月 12 日
編集済み: Andrei Bobrov 2012 年 9 月 12 日
A2 = reshape(A',[],1);
out = A2(randperm(numel(A),1));

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by