Scilab 6.1.0
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
break
ループ中断を表すキーワード
説明
for
または while
ループの中で, コマンド break
は
ループを強制的に終了します.
例
k=0; while 1==1, k=k+1; if k > 100 then break end; end
参照
履歴
Version | Description |
6.0.0 | break is now protected:
Assignments like break=1 are no longer possible. |
Report an issue | ||
<< abort | Control flow | case >> |