Borrar filtros
Borrar filtros

how to reverse matrix?

27 visualizaciones (últimos 30 días)
eri
eri el 25 de En. de 2013
Comentada: Tarek Msolli el 19 de Nov. de 2020
i want to reverse the order of row or column, example if i have matrix
2 4 7
7 8 5
it will become(column)
7 4 2
5 8 7
or(row)
7 8 5
2 4 7

Respuestas (1)

Image Analyst
Image Analyst el 25 de En. de 2013
Editada: Image Analyst el 25 de En. de 2013
You can use the functions flipud() and fliplr(). Here's the code:
A=[2 4 7
7 8 5]
A_Left_Right = fliplr(A)
A_Up_Down = flipud(A)
In the command window:
A =
2 4 7
7 8 5
A_Left_Right =
7 4 2
5 8 7
A_Up_Down =
7 8 5
2 4 7
  2 comentarios
Image Analyst
Image Analyst el 26 de En. de 2013
eri, haven't heard back from you - doesn't this do the job?
Tarek Msolli
Tarek Msolli el 19 de Nov. de 2020
some say that he's still waiting for a feedback to this very day, others say he gave up and decided to take his life out for the his never been able to confess his feeling to Eri, but no one is truly sure.

Iniciar sesión para comentar.

Categorías

Más información sobre Matrices and Arrays 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