MATLAB continue語句
continue語句用於控製傳遞給下一次迭代為或while循環。
在MATLAB中的 continue語句跟 break語句有點像。而不是強製終止,但是,'continue'強製下一次迭代的循環發生,跳躍中的任何代碼之間。
流程圖:
例子:
創建一個腳本文件,並鍵入下麵的代碼:
a = 10; %while loop execution while a < 20 if a == 15 % skip the iteration a = a + 1; continue; end fprintf('value of a: %d ', a); a = a + 1; 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