I want to use circshift until a certain value in my vector until it reaches the end of the array.

조회 수: 2 (최근 30일)
I have the following vector
front_pos = 17800;
rear_pos = 58400;
B = [0 0 0 0 rear_pos 0 front_pos 0 0 0 0 0 0 0 0 0 0 0 0 0 0]';
I want to continue to circularly shift the until the front_pos variable reaches the last element in the vector

답변 (1개)

KALYAN ACHARJYA
KALYAN ACHARJYA 2021년 3월 15일
편집: KALYAN ACHARJYA 2021년 3월 15일
front_pos = 17800;
rear_pos = 58400;
B = [0 0 0 0 rear_pos 0 front_pos 0 0 0 0 0 0 0 0 0 0 0 0 0 0]';
while B(end)~=front_pos
B=circshift(B,1)
end
B

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by