how would I randomly replace two elements in a row vector
Show older comments
rn, i have:
y = char(randperm(27));
for i = 1:iter
ynew = randperm(numel(y), 2);
1 Comment
Rena Berman
on 15 Mar 2024
(Answers Dev) Restored edit
Answers (1)
Walter Roberson
on 13 Feb 2024
Edited: Walter Roberson
on 13 Feb 2024
y = char(randperm(27) - 1 + 'A');
for i = 1:iter
idx = randperm(numel(y), 2);
ynew = y;
ynew(idx) = ynew([idx(2) idx(1)]);
end
Categories
Find more on Creating and Concatenating Matrices in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!