How can I randomly extract a element in a vector?

6 views (last 30 days)
Hi!!
How can I extract a random element from a vector?
For example, I have vector v = [a1 a2 a3 a4] and I want to randomly select one of the elements. ~
Thanks!!

Accepted Answer

Torsten
Torsten on 6 Apr 2020
Edited: Torsten on 6 Apr 2020
random_element = v(randi(numel(v)))

More Answers (0)

Categories

Find more on Random Number Generation in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!