Please note, this is a STATIC archive of website www.javatpoint.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
Javatpoint Logo
Javatpoint Logo

MATLAB continue

The continue statement works within a for or while loop and passes control to the next iteration of the loop.

Syntax:

Following are the points while using a continue statement in MATLAB:

  • Continue statement passes the control of the execution to the next iteration of a for or while loop.
  • All remaining statements following the continue statement do not execute for the current iteration.
  • The continue statement applies only to the body of the loop where it is called, hence in nested loops, it affects the execution of the loop in which it occurs.
  • The continue statement only works inside a for or while loop, and it can't be used inside a function. But if a function is having a for or while loop, there we can use continue inside the loop.

Flowdiagram of Continue Statement

MATLAB Continue Statement

Example1:

Output:

     9

    21

    33

    45

continue with nested if-else

Example:







Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA