change the for loop

2 visualizaciones (últimos 30 días)
Konstantinos Kontos
Konstantinos Kontos el 31 de Mayo de 2012
How can i put the for loop 10 times forward when an if statement is true?

Respuesta aceptada

Walter Roberson
Walter Roberson el 31 de Mayo de 2012
If you are asking how you can skip 10 iterations of the for loop if an "if" statement is true, then the answer is that you cannot. You can, though, structure your loop like
num_to_skip = 0;
for K = 1 : 100
if num_to_skip > 0
num_to_skip = num_to_skip - 1;
continue
end
[...]
if YourCondition
num_to_skip = 10;
continue
end
[...]
end

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