Borrar filtros
Borrar filtros

Is it possible to change the running index in a for cycle?

4 visualizaciones (últimos 30 días)
Mr M.
Mr M. el 3 de Jul. de 2018
Editada: Walter Roberson el 4 de Jul. de 2018
for i = 1:10
if i == 3
i = i+2;
end
end

Respuestas (2)

Tejas Jayashankar
Tejas Jayashankar el 3 de Jul. de 2018
Hi,
Check out the following answer for a similar question:
Let me know if this helps.

Jan
Jan el 4 de Jul. de 2018
This does not work in a for loop, but it works with while:
i = 1;
while i <= 10
disp(i)
if i == 3
i = i+2;
end
i = i + 1;
end
Alternatively:
for i = [1:3, 5:10]
disp(i)
end

Categorías

Más información sobre Matrix Indexing 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