<< with_macros_source Configuration Debugging >>

Scilab Help >> Scilab > Configuration > with_module

with_module

Scilabモジュールがインストールされているかどうかを調べる

呼出し手順

r = with_module(module_name)

引数

r

論理値

module_name

文字列. 例 : 'core'

説明

Scilabモジュールがインストールされている場合に %t, そうでない場合に %f を返します.

withXML = with_module("xml");
if withXML == %t then
   disp("XML module enabled");
else
   disp("XML module disabled");
end

参照


Report an issue
<< with_macros_source Configuration Debugging >>