MATLAB - continue 语句



continue 语句用于将控制权传递到 for 或 while 循环的下一迭代。

MATLAB 中的 continue 语句的工作方式与 break 语句有些类似。但是,它不会强制终止循环,而是强制执行循环的下一迭代,跳过中间的任何代码。

流程图

MATLAB continue statement

示例

创建一个脚本文件并输入以下代码:

a = 9;
%while loop execution 
while a < 20
   a = a + 1; 
   if a == 15
      % skip the iteration 
      continue;
   end 
fprintf('value of a: %d\n', a);
end

运行该文件时,它将显示以下结果:

value of a: 10
value of a: 11
value of a: 12
value of a: 13
value of a: 14
value of a: 16
value of a: 17
value of a: 18
value of a: 19
value of a: 20
matlab_loops.htm
广告