How to shift the elements of binary matrix?

2 Ansichten (letzte 30 Tage)
N M Channabasavayya
N M Channabasavayya am 19 Apr. 2019
Kommentiert: Walter Roberson am 19 Apr. 2019
I have a 8*8 binary matrix.
example;
a=[1 0 0 1 0 1 0 1; 0 1 0 0 0 1 1 0; 0 1 0 1 1 0 0 0; 0 1 1 1 1 0 1 0; 1 0 1 0 1 0 1 1; 0 0 0 1 0 1 0 1; 1 0 1 1 0 1 0 0; 1 0 0 1 0 1 1 1];
I want to shift each element of the matrix either right shift or left shift for multiple times, so that the original matrix is altered completely.
How can I do this?
Help me out!
Thank you!
  1 Kommentar
Walter Roberson
Walter Roberson am 19 Apr. 2019
circshift(a, how_far_to_move_right, 2)
circshift(a, -1 * how_far_to_move_left, 2)

Melden Sie sich an, um zu kommentieren.

Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by