How do I convert from a while loop to a for loop?

2 visualizaciones (últimos 30 días)
Jillian Sweatt
Jillian Sweatt el 4 de Nov. de 2015
Respondida: James Tursa el 4 de Nov. de 2015
i = 0;
while (i < 110)
fprintf('i = %d\n',i)
i = i + 11;
end

Respuesta aceptada

James Tursa
James Tursa el 4 de Nov. de 2015
for i=0:11:109
fprintf('i = %d\n',i)
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