how to circularly shift the entire elements of a matrix
1 回表示 (過去 30 日間)
古いコメントを表示
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
0 件のコメント
回答 (1 件)
Stephen23
2018 年 3 月 21 日
>> b = a.';
>> b(:) = b([end,1:end-1]);
>> c = b.'
c =
9 1 2
3 4 5
6 7 8
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Spline Postprocessing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!