Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.1.1 - 日本語

Change language to:
English - Français - Português - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Scilabヘルプ >> Scilab > Control flow > end

end

end キーワード

説明

ループまたは条件文の末尾で使用されます. for, while, if, select は, end で 終わる必要があります.

a=42
if a==42 then
   disp("the answer to all questions")
end

i = 0
while i<5
   disp("i");
   i = i + 1;
end

n=5;
for i = 1:n
    for j = 1:n
        a(i,j) = 1/(i+j-1);
    end;
end

参照

  • endfunction
  • break — ループ中断を表すキーワード
  • continue — ループの次の反復に制御を移すキーワード
  • dollar — ($) 最後の添字
  • comma — (,) 列, 命令, 引数セパレータ
  • semicolon — 式の末尾および行セパレータ
  • for — ループ用の言語キーワード
  • while — while キーワード
  • if — 条件付き実行
  • select — select キーワード

履歴

バージョン記述
6.0.0
  • end can no longer be followed by an inline instruction without , or ; separator (as in if %t, a=1; end b=2).
  • end can now close a function block instead of endfunction (that still should be prefered).
  • end is now protected: Assignments like end=1 are no longer possible.
Report an issue
<< elseif Control flow for >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Mon Jan 03 14:37:44 CET 2022