matrix column vectors, and its elements?
1 回表示 (過去 30 日間)
古いコメントを表示
IF I have this column vectors,as example
A=[0;1;2;3;4;5;6;7;8;9;10];
how can rearrangement its like thas,
A=[5;6;7;8;9;10;0;1;2;3;4] to plot its again?
but my column vectors have length(32)with zero pading become(512)
0 件のコメント
採用された回答
Andrei Bobrov
2013 年 12 月 10 日
編集済み: Andrei Bobrov
2013 年 12 月 10 日
circshift(A,size(A,1)/2+1)
3 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Resizing and Reshaping Matrices についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!