How to move values of matrix for 1 out of two rows?

1 visualización (últimos 30 días)
MICHEL PHILIPE LIOUSSIS
MICHEL PHILIPE LIOUSSIS el 25 de En. de 2020
Comentada: Stephen23 el 25 de En. de 2020
Hello, I would like to move to values of a matrix to the next column every two rows. For example:
from 1 0 5 0 to 1 0 5 0
2 0 6 0 0 2 0 6
3 0 7 0 3 0 7 0
4 0 8 0 0 4 0 8
Thanks!

Respuestas (1)

Stephen23
Stephen23 el 25 de En. de 2020
>> M = [1,0,5,0;2,0,6,0;3,0,7,0;4,0,8,0]
M =
1 0 5 0
2 0 6 0
3 0 7 0
4 0 8 0
>> M(2:2:end,:) = circshift(M(2:2:end,:),1,2)
M =
1 0 5 0
0 2 0 6
3 0 7 0
0 4 0 8
  2 comentarios
Stephen23
Stephen23 el 25 de En. de 2020
@MICHEL PHILIPE LIOUSSIS: I hope it helped. Please remember to accept my answer if it was useful!

Iniciar sesión para comentar.

Categorías

Más información sobre Matrix Indexing en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by