1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
Usage
The continue statement is used to change the order of
execution within a loop. The continue statement can be used
inside a for loop or a while loop. The syntax for its use is
continue
inside the body of the loop. The continue statement forces
execution to start at the top of the loop with the next
iteration. The examples section shows how the continue
statement works.
Example
Here is a simple example of using a continue statement. We
want to sum the integers from 1 to 10, but not the number 5.
We will use a for loop and a continue statement.
continue_ex.m
function accum = continue_ex
accum = 0;
for i=1:10
if (i==5)
continue;
end
accum = accum + 1; %skipped if i == 5!
end
The function is exercised here:
--> continue_ex
ans =
9
--> sum([1:4,6:10])
ans =
50
* FreeMat_Documentation
* Flow_Control
* Generated on Thu Jul 25 2013 17:17:14 for FreeMat by
doxygen_ 1.8.1.1
|