Clear Filters
Clear Filters

how to find random number between 20 input numbers

1 view (last 30 days)
I have 20 numbers that I want to find 1 or 2 or 3 of them as random. Could you help me to write code or any function that generate random number?

Accepted Answer

Walter Roberson
Walter Roberson on 19 Nov 2017
L = length(YourVectorOfNumbers);
num_to_pick = randi(3);
which_to_pick = randperm(L, num_to_pick);
picked_values = YourVectorOfNumbers(which_to_pick);

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!