flip certain columns in matrix

9 visualizzazioni (ultimi 30 giorni)
john creighton
john creighton il 20 Ott 2014
Commentato: Adam il 11 Dic 2017
hey all i need to flip every nth column in a matrix. ie. if i have matrix A=[1 2 3;4 5 6;7 8 9] i need it to become A=[1 8 3;4 5 6;7 2 9] any suggestions?

Risposta accettata

Adam
Adam il 20 Ott 2014
Modificato: Adam il 20 Ott 2014
n = 2;
colIdx = 2:n:size(A,2);
A(:,colIdx) = flip( A(:,colIdx) )
assuming you want to flip even columns (in the case of n = 2). Obviously for odd colums just change the first line to:
colIdx = 1:n:size(A,2);

Più risposte (1)

raja bala
raja bala il 10 Dic 2017
A(:,[2]) = flip (A(:,[2]))
  1 Commento
Adam
Adam il 11 Dic 2017
This flips the 2nd column only, as does
A(:,2) = flip (A(:,2))
without the square brackets.

Accedi per commentare.

Categorie

Scopri di più su Characters and Strings 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