continue語句用于將控制傳遞給for或while循環(huán)的下一個迭代。
MATLAB中的continue語句的工作方式與break語句類似。然而,“continue”不是強制終止,而是強制循環(huán)的下一次迭代發(fā)生,跳過中間的任何代碼。
創(chuàng)建一個腳本文件并輸入以下代碼-
a = 9; %While 循環(huán)執(zhí)行 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