Switch two row of matrix

How to switch two row of matrix? For example: matrix A is: 1 3 4; 2 4 5 and Y want to be 2 4 5; 1 3 4 ?

3 Commenti

Nikhil Sachan
Nikhil Sachan il 1 Feb 2019
temp=A(2,:);
A(1,:)=A(2,:);
A(2,:)=temp;
%this will swap required rows
madhan ravi
madhan ravi il 21 Feb 2019
Modificato: madhan ravi il 21 Feb 2019
A more efficient answer had been accepted 5 years ago.
Tristan McRae
Tristan McRae il 22 Feb 2019
omg savage

Accedi per commentare.

 Risposta accettata

Azzi Abdelmalek
Azzi Abdelmalek il 5 Ott 2013
Modificato: Azzi Abdelmalek il 5 Ott 2013
A=[1 3 4; 2 4 5]
A([1 2],:)=A([2 1],:)

3 Commenti

Evil Meet
Evil Meet il 27 Ott 2020
Thank you very much. U r awesome
Kevin Moss
Kevin Moss il 12 Giu 2021
can anyone explain the logic behind why/how this works?
this works pretty clear
we take first and second all the row and make it equal to second and first all the row
for example, if you wanted to switch the third and the first row, you should type like this:
A([1 3], :) = A([3 1], :)
where ':' at second place stands for taking all the columns and '[1 3]' stands for first and third row

Accedi per commentare.

Più risposte (1)

Pontus Vikstål
Pontus Vikstål il 12 Ago 2019
Modificato: Pontus Vikstål il 12 Ago 2019
This way might be even faster.
A = [1 3 4; 2 4 5]
x = [0 1;1 0];
A = x*A
Then there's also this way
A = [1 3 4; 2 4 5]
A = flip(A)

2 Commenti

madhan ravi
madhan ravi il 25 Lug 2020
If A has more than two rows this won’t work.
Yeah i will do that with my 600*600 matrix

Accedi per commentare.

Categorie

Community Treasure Hunt

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

Start Hunting!

Translated by