random entry selection from a matrix
Ältere Kommentare anzeigen
how can I select any element randomly from a 1 x n matrix?
Antworten (1)
Doug Hull
am 23 Jul. 2012
0 Stimmen
v = [1:10]
vi = randi(numel(v));
choice = v(vi)
1 Kommentar
Walter Roberson
am 23 Jul. 2012
Doug, you missed your chance to say
choice = v(randperm(numel(v),1));
Kategorien
Mehr zu Logical finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!