For loop with random value to select from an array

6 views (last 30 days)
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 Comment
Rik
Rik on 28 Aug 2020
In the future please respond with a comment instead of a new question. You essentially asked the same question half an hour ago.

Sign in to comment.

Accepted Answer

Rik
Rik on 28 Aug 2020
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

More Answers (0)

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!