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

1 view (last 30 days)
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!

Answers (1)

Stephen23
Stephen23 on 25 Jan 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 Comments
Stephen23
Stephen23 on 25 Jan 2020
@MICHEL PHILIPE LIOUSSIS: I hope it helped. Please remember to accept my answer if it was useful!

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!