Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
isdef
verifica existência de variáveis
Seqüência de Chamamento
ve = isdef(name) ve = isdef(name, where)
Parâmetros
- name
matrix of strings: names of queried variables.
- where
um string opcional com valor padrão 'all' (todos os locais)
- ve
a matrix with the same size as
name
with boolean values
Descrição
isdef(name)
retorna %T
se a
variável name
existe e %F
em caso
contrário.
Aviso: uma função que utiliza isdef
pode retornar
um resultado que depende do ambiente!
isdef(name,'local')
retorna %T
se a variável name
existe no ambiente local da função
corrente e %F
em caso contrário.
isdef(name,'nolocal')
retorna
%T
se a variável name
existe no
ambiente de chamada completo (incluindo o nível global) da função corrente
e %F
em caso contrário.
Exemplos
Ver Também
Report an issue | ||
<< global | Variables | isglobal >> |