Azzera filtri
Azzera filtri

how would I randomly replace two elements in a row vector

1 visualizzazione (ultimi 30 giorni)
rn, i have:
y = char(randperm(27));
for i = 1:iter
ynew = randperm(numel(y), 2);

Risposte (1)

Walter Roberson
Walter Roberson il 13 Feb 2024
Modificato: Walter Roberson il 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

Categorie

Scopri di più su Random Number Generation in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by