To pick a number randomly
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Akzeptierte Antwort
Andrei Bobrov
am 11 Sep. 2012
Bearbeitet: Andrei Bobrov
am 11 Sep. 2012
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));
Weitere Antworten (1)
Rene
am 11 Sep. 2012
Bearbeitet: Rene
am 11 Sep. 2012
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 Kommentare
Andrei Bobrov
am 12 Sep. 2012
Bearbeitet: Andrei Bobrov
am 12 Sep. 2012
A2 = reshape(A',[],1);
out = A2(randperm(numel(A),1));
Siehe auch
Kategorien
Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!