フィルターのクリア

For loop with random value to select from an array

8 ビュー (過去 30 日間)
Ali Tawfik
Ali Tawfik 2020 年 8 月 28 日
コメント済み: Rik 2020 年 8 月 28 日
Hi.. I would like to select random values each iteration (some of them will be repeated )how could I do that ?
The output should be something like the following: [5 2 3 1 1 3 4]
clearvars;
clc
y=[1 5 4 3 2];
for i=1:8
new_y=y(randperm(i))
end
  1 件のコメント
Rik
Rik 2020 年 8 月 28 日
In the future please respond with a comment instead of a new question. You essentially asked the same question half an hour ago.

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

採用された回答

Rik
Rik 2020 年 8 月 28 日
If you only want a single value from your array I would suggest this code:
clearvars;
clc
y=[1 5 4 3 2];
for i=1:8
new_y=y(randi(end));
%
%code that uses the new_y scalar
%
end

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by