Borrar filtros
Borrar filtros

How to swap columns of matrix zeros(2,n)

1 visualización (últimos 30 días)
amina shafanejad
amina shafanejad el 22 de Abr. de 2015
Comentada: Star Strider el 22 de Abr. de 2015
Hello everyone
I'm working on one project which in need to swap all the columns of the matrix zeros(2,n) which i want to swap the first column with last column, second with second column from last, third column from third column from last and so on can anybody help me with it thank you.
  2 comentarios
Jos (10584)
Jos (10584) el 22 de Abr. de 2015
Eh ... swapping two columns filled with zeros has no net effect, or does it?
Star Strider
Star Strider el 22 de Abr. de 2015
@Jos — As is the case with a lot of Questions here, I suspect this is a proxy for a different problem.

Iniciar sesión para comentar.

Respuesta aceptada

Star Strider
Star Strider el 22 de Abr. de 2015
From your description, the fliplr function would work.
  2 comentarios
amina shafanejad
amina shafanejad el 22 de Abr. de 2015
thank you
Star Strider
Star Strider el 22 de Abr. de 2015
My pleasure!

Iniciar sesión para comentar.

Más respuestas (1)

Joseph Cheng
Joseph Cheng el 22 de Abr. de 2015
Editada: Joseph Cheng el 22 de Abr. de 2015
well you can achieve this by
test = randi(10,2,10)
hfliptest = test(:,end:-1:1)
i cant remember if there is a built in function to do this. perhaps someone else knows but this should do it.
**edit oh there it is fliplr.
  1 comentario
amina shafanejad
amina shafanejad el 22 de Abr. de 2015
thank you for your response and help i think it will help me

Iniciar sesión para comentar.

Categorías

Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by