how to circularly shift the entire elements of a matrix

조회 수: 1 (최근 30일)
neethu p
neethu p 2018년 3월 21일
답변: Stephen23 2018년 3월 21일
i need to shift the elements by one position if the input is
a=[1 2 3;4 5 6;7 8 9]
the output i needed is
b=[9 1 2;3 4 5;6 7 8]
pls send me the code

답변 (1개)

Stephen23
Stephen23 2018년 3월 21일
>> b = a.';
>> b(:) = b([end,1:end-1]);
>> c = b.'
c =
9 1 2
3 4 5
6 7 8

카테고리

Help CenterFile Exchange에서 Spline Postprocessing에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by