The while loop is similar to the for loop in that it allows the repeated execution of statements. Unlike the for loop, the number of times that the statements in the body of the loop are executed can depend on variable values that are computed in the loop. The syntax of the while loop has the following form:
while expression
% Command 1
% Command 2
% More commands to execute repeatedly until expression is not true
end
expression is a logical expression that is either true or false. (Information about logical expressions is available in Programming with M-Files: Logical Expressions.)
For example, consider the following while loop:
n = 1
while n < 3
n = n+1
end
n =
1
n =
2
n =
3
Note that in all of this example, the commands inside the while loop are indented relative to the while and end statements. This is not required, but is common practice and makes the code much more readable.




