Scilab Home page | Wiki | Bug tracker | Forge | Mailing list archives | ATOMS | File exchange
Please login or create an account
Change language to: Français - Português - Русский - 日本語
Scilab Help >> Scilab > Variables > who

who

listing of variables

Syntax

who
who()
names = who('local')
[names, mem] = who('local')
names = who('global')
[names, mem] = who('global')
who('sorted')
names = who('local','sorted')
[names, mem] = who('local','sorted')
names = who('global','sorted')
[names, mem] = who('global','sorted')

Description

who() displays current variable names.

who('local') or who('get') returns current variable names and memory used in double precision words.

who('global') returns global variable names and memory used in double precision words.

who('sorted') displays in alphabetical order all variables.

Examples

a=1;
b=2;
[name, mem]=who("local");
position=find(name=="a")
mem(position) // Size used by a
position=find(name=="d") // []

See Also

  • whos — listing of variables in long form
  • who_user — listing of user's variables
Scilab Enterprises
Copyright (c) 2011-2015 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Jun 15 08:27:30 CEST 2016