<< break | Interpreter functions | for >> |
continue |
continue statement can be used inside a for or a while loop.
continue statement is used to pass control to the next iteration of a loop.
for i=1:10
if (i == 5)
continue;
disp('never here')
disp(i)
else
disp(i)
end
end
for.
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET