Effacer les filtres
Effacer les filtres

how would I randomly replace two elements in a row vector

1 vue (au cours des 30 derniers jours)
Samuel
Samuel le 13 Fév 2024
Modifié(e) : Rena Berman le 15 Mar 2024
rn, i have:
y = char(randperm(27));
for i = 1:iter
ynew = randperm(numel(y), 2);

Réponses (1)

Walter Roberson
Walter Roberson le 13 Fév 2024
Modifié(e) : Walter Roberson le 13 Fév 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

Catégories

En savoir plus sur Random Number Generation dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by