Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.5.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 > Scilab keywords > 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

参照

  • for — ループ用の言語キーワード
  • while — while キーワード
  • if — 条件付き実行
  • select — select キーワード
Report an issue
<< empty Scilab keywords equal >>

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:
Thu Oct 02 13:58:18 CEST 2014