位置:首頁 > 高級語言 > Matlab教學 > MATLAB while循環

MATLAB while循環

while循環重複執行語句,當條件為 true。

語法:

在MATLAB 中 while循環的語法是:

while <expression>
   <statements>
end

while 循環反複執行程序語句隻要表達式為 true。

表達式是 true,當結果不為空,並包含所有非零元素(邏輯或實際數字)。否則,表達式為 false。

例子

創建一個腳本文件,並鍵入下麵的代碼:

a = 10;
% while loop execution 
while( a < 20 )
  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: 15
value of a: 16
value of a: 17
value of a: 18
value of a: 19