random entry selection from a matrix

Answers (1)

Doug Hull
Doug Hull on 23 Jul 2012
v = [1:10]
vi = randi(numel(v));
choice = v(vi)

1 Comment

Doug, you missed your chance to say
choice = v(randperm(numel(v),1));

Sign in to comment.

Asked:

on 23 Jul 2012

Community Treasure Hunt

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

Start Hunting!