Azzera filtri
Azzera filtri

how to come out of loop after getting a positive elemnt

1 visualizzazione (ultimi 30 giorni)
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!

Risposta accettata

Walter Roberson
Walter Roberson il 2 Dic 2015
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 Commento
Rutika Titre
Rutika Titre il 2 Dic 2015
Thank You sir for your help I got my answer.I used "elseif" in my code which worked. Thank you so much.

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Loops and Conditional Statements in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by