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 CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by