Randomly select one value from an Array.

3 ビュー (過去 30 日間)
Refat Haj Mohamad All
Refat Haj Mohamad All 2023 年 1 月 24 日
コメント済み: Stephen23 2023 年 1 月 25 日
I have a 200x1 Cell Array, A, and I need to randomly select x values from that cell array. I tried using randperm in a loop but it seems to select the values in order from Array A. Also repetition is permitted.
for i=1:30
new_A=A(randperm(i))
end
  1 件のコメント
Stephen23
Stephen23 2023 年 1 月 25 日
"I tried using randperm in a loop but it seems to select the values in order from Array A."
That is how you wrote your code. The correct way to use RANDPERM() would be without a loop:
newA = A(randperm(200,30))

サインインしてコメントする。

回答 (2 件)

the cyclist
the cyclist 2023 年 1 月 24 日
Here is one way to pull 30 random values (with possible repeats) from A.
randomIndex = randi(200,30,1);
new_A = A(randomIndex)

Image Analyst
Image Analyst 2023 年 1 月 24 日
No loop needed. Try this to get x cells randomly chosen from a cell array, A, of any dimensions
randomIndexes = randi(numel(A), x, 1); % Linear indexes
output = A(randomIndexes); % Extract the cells into a new cell array.
Because we're using randi() instead of randperm(), it's possible to have some cells repeated in the output.

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by