row circular shift in matrix
26 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Abhishek Bakhla
el 20 de Abr. de 2020
Comentada: Abhishek Bakhla
el 24 de Abr. de 2020
How can I shift all the elements of a particular row in matrix in left circular shift or right circular shift.
0 comentarios
Respuesta aceptada
Tommy
el 20 de Abr. de 2020
Editada: Tommy
el 23 de Abr. de 2020
M(row,:) = [M(row,end) M(row,1:end-1)]; % shift to the right
M(row,:) = [M(row,2:end) M(row,1)]; % shift to the left
(edit) To shift by any amount:
M = randi(10,5)
shift = 8; row = 2;
[n,m] = size(M);
M(row,:) = [M(row,(end-mod(shift,m)+1):end) M(row,1:(end-mod(shift,m)))] % shift to the right
M(row,:) = [M(row,(mod(shift,m)+1):end) M(row,1:mod(shift,m))] % shift to the left
(edit) Fixed mistake
3 comentarios
Tommy
el 23 de Abr. de 2020
Yes sorry I goofed! I used n where I should've used m. Let me know if that fixes it for you.
Más respuestas (1)
Ver también
Categorías
Más información sobre Graphics Object Programming en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!