how would I randomly replace two elements in a row vector

1 次查看(过去 30 天)
rn, i have:
y = char(randperm(27));
for i = 1:iter
ynew = randperm(numel(y), 2);

回答(1 个)

Walter Roberson
Walter Roberson 2024-2-13
编辑:Walter Roberson 2024-2-13
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

类别

Help CenterFile Exchange 中查找有关 Random Number Generation 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by