Hey guys , How can i shift rows or columns within an array?

A = [ 1,2,3;4,5,6;7,8,9] How do i shift [1 , 2 , 3] to where [ 4,5,6] is?

2 Comments

What do you mean by "shift"? Can you give an example of what the output should be? And what have you tried so far?
You mean, you want to do 'circshift' like this ?
>> circshift(A,1,1)
ans =
7 8 9
1 2 3
4 5 6

Sign in to comment.

Categories

Tags

Asked:

on 22 Sep 2017

Answered:

on 22 Sep 2017

Community Treasure Hunt

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

Start Hunting!