フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

hi, i have set of numbers as following :

1 回表示 (過去 30 日間)
mohammed elmenshawy
mohammed elmenshawy 2017 年 7 月 12 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
Z=[1,5,7,4,3,6,77,88,34,73,58,97,23,55,30,49,86,76,64,64,54,54,65,76,76,62,83,59,62,57,48]; How to choose 10 random numbers from these numbers??
  1 件のコメント
Star Strider
Star Strider 2017 年 7 月 12 日
Essential duplicate of: i have the following array

回答 (1 件)

Walter Roberson
Walter Roberson 2017 年 7 月 12 日
Z(randperm(length(Z),10))
  5 件のコメント
Walter Roberson
Walter Roberson 2017 年 7 月 12 日
Breaking it up into steps:
random_index = randperm(length(Z));
Z(random_index(1:10))
That is, you start by taking a random permutation of the 31 possible indices into Z. Then you take 10 of those, so you get 10 unique indices into Z. Then you index Z at those locations to have chosen 10 random elements without replacement.
The code
Z(randperm(length(Z),10))
does this in one step.
Jan
Jan 2017 年 7 月 12 日
@mohammed: You do not need:
Z = (randperm(length(Z), 10));
but:
SelectedZ = Z(randperm(length(Z), 10));

この質問は閉じられています。

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by