Circshift not working for values of zero.

1 回表示 (過去 30 日間)
Giuseppe
Giuseppe 2014 年 3 月 26 日
回答済み: Azzi Abdelmalek 2014 年 3 月 26 日
I have;
x = [0 0 3 3]
I want this to become
x = [0 3 3 0]
When I circshift
x_2 = circshift(x,2)
it equalls [0 0 3 3].
Am I doing the right circshift? NOTE I want it reordered with the second element first keeping the sequence.

採用された回答

Mischa Kim
Mischa Kim 2014 年 3 月 26 日
Use
x_2 = circshift(x',-1,1)'

その他の回答 (1 件)

Azzi Abdelmalek
Azzi Abdelmalek 2014 年 3 月 26 日
x_2=circshift(x,[0 -1])

カテゴリ

Help Center および File ExchangeStartup and Shutdown についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by