Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
2023.1.0 - Français


who_user

listing of user's variables

Syntax

varList = who_user()
varList = who_user(bPrint)

Arguments

bPrint

enable or disable screen outputs (default: %t).

varList

a column vector of user's variables or [] if user does not have variable.

Description

who_user displays and/or returns user's variable names.

Examples

clear
who_user()
who_user(%t)
who_user(%f)
a = 1;
b = 2;
who_user()
who_user(%t)
who_user(%f)

See also

  • whos — liste des variables courantes dans un format détaillé
  • who — liste des variables

History

VersionDescription
5.4.0 who_user can now return user's variable names in a column vector of character strings.
Report an issue
<< who Variables whos >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Mon May 22 12:39:40 CEST 2023