필터 지우기
필터 지우기

How to perform circshift on specific elements?

조회 수: 2 (최근 30일)
hbcukid
hbcukid 2020년 11월 20일
댓글: hbcukid 2020년 11월 20일
I have a much larger dataset but given A = [1 2 3 4; 5 6 7 8; 9 10 11 12], how can I use circshift on the odd rows and only columns 2 - 3 to move the values one column to the left. I know those values are indexed by A = A(1:2:end, 2:3); and the circshift should be circshift(A, [0 -1]) but I am having trouble putting it all together.

채택된 답변

Rik
Rik 2020년 11월 20일
You are overwriting the original array, instead of using circshift on the partial array.
A = [1 2 3 4; 5 6 7 8; 9 10 11 12];
L = false(size(A));
L(1:2:end, 2:3) = true;
A_temp = A(L);
A_temp = circshift(A_temp, [0 -1]);
A(L) = A_temp;
%Or with more compact notation:
A = [1 2 3 4; 5 6 7 8; 9 10 11 12];
A(1:2:end, 2:3) = circshift(A(1:2:end, 2:3), [0 -1]);
disp(A)
1 3 2 4 5 6 7 8 9 11 10 12

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by