필터 지우기
필터 지우기

any single vector element =0 than loop again rotate and again loop start from first line

조회 수: 2 (최근 30일)
30 element in vector check each value of vector and any element in vector =0 than loop again start from first step i want to go at first line of code if condition not satisfy , this vector is get after some process if any content is not zero than move forward and if any content is zero than again loop rotate

채택된 답변

Jan
Jan 2017년 4월 7일
I'm not sure, if I understand the question correctly. A guess:
ready = false;
while ~ready
... your code
v = randi([-10, 10], 1, 30); % Pseudo-data, use your vector instead
if all(v) % Stop loop if v does not contain any 0
ready = true;
end
end

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

태그

아직 태그를 입력하지 않았습니다.

제품

Community Treasure Hunt

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

Start Hunting!

Translated by