필터 지우기
필터 지우기

how to come out of loop after getting a positive elemnt

조회 수: 1 (최근 30일)
Rutika Titre
Rutika Titre 2015년 12월 2일
댓글: Rutika Titre 2015년 12월 2일
hello,
if my row vector x=[-1 -1 -1 -1 -1 3 -1 -1], I am sorting this row vector by giving s=sort(x); so i get the s=[-1 -1 -1 -1 -1 -1 -1 3]; using loop
x=[-1 -1 -1 -1 -1 3 -1 -1];
s=sort(x);
if ii=1:length(s)
if s(ii)<-1
continue;
here i want that after sorting I get 3 as the last element which is only the positive element so break the loop and go to next row.
I have a matrix of size 5X8 I just want the condition for it.
Thank-you!

채택된 답변

Walter Roberson
Walter Roberson 2015년 12월 2일
for ii = 1 : upper limit
if the condition is met
continue
end
do something
end
The "do something" will not be done if the condition is met.
You should also be considering using
for ii = 1 : upper limit
if the condition is not met
do something
end
end
  댓글 수: 1
Rutika Titre
Rutika Titre 2015년 12월 2일
Thank You sir for your help I got my answer.I used "elseif" in my code which worked. Thank you so much.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by