Scilabモジュールがインストールされているかどうかを調べる
r = with_module(module_name)
論理値
文字列. 例 : 'core'
'core'
Scilabモジュールがインストールされている場合に %t, そうでない場合に %f を返します.
%t
%f
withXML = with_module("xml"); if withXML == %t then disp("XML module enabled"); else disp("XML module disabled"); end