<< with_module Configuration Debugging >>

Scilabヘルプ >> Scilab > Configuration > with_tk

with_tk

Scilab にTCL/TKが組み込まれているかどうかを調べる (obsolete)

呼出し手順

r = with_tk()

引数

r

論理値

説明

with_tk() will no longer be available in Scilab 6.1. Please use with_module("tclsci") instead.

ScilabがTCL/TKインターフェイスと共に構築されている場合に %t, そうでない場合に %f を返します.

if with_tk() == %t then
   disp("Tk is available");
else
   disp("Tk is not available");
end

履歴

バージョン記述
6.0.2 with_tk() is declared obsolete to be removed from Scilab 6.1. It may be replaced with with_module("tclsci").

Report an issue
<< with_module Configuration Debugging >>