Borrar filtros
Borrar filtros

how to come out of loop after getting a positive elemnt

1 visualización (últimos 30 días)
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!

Respuesta aceptada

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

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by