Borrar filtros
Borrar filtros

Skipping part of an index in a for-loop

13 visualizaciones (últimos 30 días)
Robert Mason
Robert Mason el 31 de Jul. de 2016
Respondida: dpb el 31 de Jul. de 2016
I have a set of data and a for-loop, for instance:
d(1) = 1;
d(2) = 2;
d(3) = 3;
for j= [1 3];
g = d(3)./(d + d(3));
end;
I would like the for-loop to skip one of the numbers in the index (for instance, 2). How can I go about coding this up?

Respuestas (1)

dpb
dpb el 31 de Jul. de 2016
nDont=2;
for j...
if j==nDont, continue, end
...
doc continue % for details

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