Filter löschen
Filter löschen

How to randomly exchange 2 entries in a column?

2 Ansichten (letzte 30 Tage)
Grace
Grace am 1 Okt. 2014
Beantwortet: Star Strider am 1 Okt. 2014
Hi, I have
a=[ 1 2;
3 4;
2 1;
4 5;
5 3]
I want to choose randomly any 2 entries from a column and exchange them. For example, I randomly choose entries 2 and 5 from the second column, exchange these two entries to become
b=[ 1 5;
3 4;
2 1;
4 2;
5 3]
How am I going to make this? Thanks in advance.

Akzeptierte Antwort

Star Strider
Star Strider am 1 Okt. 2014
This seems to work:
[r,c] = size(a); % ‘a’ Row, Col Size
cc = randi(c); % Choose Random Column
rc = randi(r, 1, 2); % Choose Random Rows
b = a; % Create ‘b’
b(rc,cc) = a(fliplr(rc), cc) % Swap Rows of Chosen Column

Weitere Antworten (0)

Kategorien

Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by