Scilab 6.0.0
Scilab Help >> Scilab > Variables > isglobal
isglobal
check if a variable is global
Syntax
t = isglobal(x)
Arguments
- x
any variable
- t
a boolean
Description
isglobal(x)
returns true if x
has been declared to be a global
variable and false otherwise.
Examples
isglobal(1) global a isglobal(a)
See Also
- global — Define global variable
- clearglobal — kills global variables
- who — listing of variables
Comments
Add a comment:
Please login to comment this page.