<< with_macros_source Configuration Debugging >>

Scilab Help >> Scilab > Configuration > with_module

with_module

checa se um módulo Scilab foi instalado

Seqüência de Chamamento

r = with_module(module_name)

Parâmetros

module_name

um string. Exemplo : 'core'

r

um booleano

Descrição

Retorna %t se o módulo Scilab tiver sido instalado.

Exemplos

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

Ver Também


Report an issue
<< with_macros_source Configuration Debugging >>