swaping 2 random numbers from array

1 visualizzazione (ultimi 30 giorni)
hello,
I have an array x = [1,(randperm(20)+1)]
but i would like to swap 2 random numbers of that array while keeping 1 as my first integer
please let me know how to go about that

Risposta accettata

Bruno Luong
Bruno Luong il 28 Apr 2022
ij = randperm(length(x)-1,2)+1;
x(ij) = x(flip(ij));
  3 Commenti
Bruno Luong
Bruno Luong il 28 Apr 2022
Simply copy it
y = x;
ij = randperm(length(y)-1,2)+1;
y(ij) = y(flip(ij));

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Creating and Concatenating Matrices 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