Rewriting a loop construct
Mostrar comentarios más antiguos
Just a thought guys, how would you rewrite this loop construct?
if i < 4
subplot(4,1,i+1);
plot(x,y);
title('Original');
end
I did try to write it as follows but something went wrong outside the loop:
subplot(4,1,i+1);
plot(x,y);
title('Original');
if i==2
break
end
What do you think of other loop constructs?
5 comentarios
Ayesha
el 1 de Feb. de 2014
Walter Roberson
el 1 de Feb. de 2014
That is not a loop. "if" does not cause looping: the body of the "if" is done once if the condition is true. Using a loop requires "for" or "while"
Ayesha
el 1 de Feb. de 2014
Walter Roberson
el 1 de Feb. de 2014
What kind of alternative were you hoping for? It's just an "if" statement with a simple body.
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Loops and Conditional Statements en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!