continue

continue evaluation in loop.

Syntax

  • continue

Description

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.

Example

for i=1:10
  if (i == 5)
    continue;
    disp('never here')
    disp(i)
  else
    disp(i)
  end
end

See also

for.

History

VersionDescription

1.0.0

initial version

Author

Allan CORNET

Last updated