フィルターのクリア

how to find random number between 20 input numbers

1 回表示 (過去 30 日間)
Maryam Abdirad
Maryam Abdirad 2017 年 11 月 19 日
回答済み: Walter Roberson 2017 年 11 月 19 日
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?

採用された回答

Walter Roberson
Walter Roberson 2017 年 11 月 19 日
L = length(YourVectorOfNumbers);
num_to_pick = randi(3);
which_to_pick = randperm(L, num_to_pick);
picked_values = YourVectorOfNumbers(which_to_pick);

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeRandom Number Generation についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by