circshift
Circular shift
📝Syntax
R = circshift(M, N)
R = circshift(M, N, DIM)
📥Input Arguments
Parameter Description
M a variable
N shift
DIM dimension to operate
📤Output Arguments
Parameter Description
R result of 'circshift'.
📄Description

circshift computes circular shift.

💡Examples
x = [10, 20, 30; 40, 50, 60; 70, 80, 90];
circshift (x, 1
circshift (x, -2))
🔗See Also
repmatreshape
🕔Version History
Version Description
1.0.0 initial version
Edit this page on GitHub